From eb459cc248a5940a14193b20d263ffee3d345026 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Thu, 16 Dec 2021 13:40:12 +0100 Subject: chore: create contact page --- src/components/Form/FormItem/FormItem.tsx | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/components/Form/FormItem/FormItem.tsx (limited to 'src/components/Form/FormItem/FormItem.tsx') 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
{children}
; +}; + +export default FormItem; -- cgit v1.2.3