From f4a340f02fd04471a3cbc0ecb789312220cf9cac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9B=90=EB=8D=94?= Date: Sun, 31 Jan 2021 12:46:12 +0900 Subject: [PATCH] feat: added input --- components/Form/Input.tsx | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 components/Form/Input.tsx diff --git a/components/Form/Input.tsx b/components/Form/Input.tsx new file mode 100644 index 0000000..58c16d0 --- /dev/null +++ b/components/Form/Input.tsx @@ -0,0 +1,13 @@ +import { Field } from 'formik' + +const Input = ({ name, placeholder }:InputProps):JSX.Element => { + return +} + +interface InputProps { + name: string + placeholder?: string +} + +export default Input +