diff --git a/components/Form/Selects.tsx b/components/Form/Selects.tsx
new file mode 100644
index 0000000..14adfae
--- /dev/null
+++ b/components/Form/Selects.tsx
@@ -0,0 +1,47 @@
+import Tag from '@components/Tag'
+import { FieldArray, useFormik } from 'formik'
+
+const Selects = ({ name, value, options }:SelectsProps):JSX.Element => {
+ const formik = useFormik({
+ initialValues: {
+ search: ''
+ },
+ onSubmit: () => { console.log('Submit') }
+ })
+ return
+
+
+ {
+ ({ insert, remove, push }) => (
+ <>
+
+
+ {
+ options.filter(el => el.includes(formik.values.search) && !value.includes(el)).length !== 0 ? options.filter(el => el.includes(formik.values.search) && !value.includes(el)).map(el=> (
+ - push(el)} onKeyPress={()=> push(el)} >{el}
+ )) : - 검색 결과가 없습니다.
+ }
+
+
+
+ {
+ value.map(el => (
+ {el} >} className='cursor-pointer' onClick={() => remove(value.indexOf(el))} />
+ ))
+ }
+
+ >
+ )
+ }
+
+
+
+}
+
+interface SelectsProps {
+ name: string
+ value: string[]
+ options: string[]
+}
+
+export default Selects
\ No newline at end of file