aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Form/FormItem/FormItem.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Form/FormItem/FormItem.tsx')
-rw-r--r--src/components/Form/FormItem/FormItem.tsx7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/components/Form/FormItem/FormItem.tsx b/src/components/Form/FormItem/FormItem.tsx
new file mode 100644
index 0000000..0f12e64
--- /dev/null
+++ b/src/components/Form/FormItem/FormItem.tsx
@@ -0,0 +1,7 @@
+import styles from '../Form.module.scss';
+
+const FormItem: React.FunctionComponent = ({ children }) => {
+ return <div className={styles.item}>{children}</div>;
+};
+
+export default FormItem;