diff --git a/client/src/components/ui/Selector.tsx b/client/src/components/ui/Selector.tsx
index b8cccd0..bf64cc8 100644
--- a/client/src/components/ui/Selector.tsx
+++ b/client/src/components/ui/Selector.tsx
@@ -1,16 +1,24 @@
+import reactSelect from "react-select"
+import makeAnimated from "react-select/animated";
+import { FormConfig } from "./Form"
+import { v4 } from "uuid"
+
interface Entity {
id: string | number
name?: string
}
-function Selector
({ optionList }: { optionList: Array }) {
+function Selector({ config, idx, optionList }: { config: FormConfig, idx: number, optionList: Array }) {
// const Selector: FC<{ optionList: Array }> = ({ optionList }) => {
return (
-