diff --git a/components/Config/SelectConfig.tsx b/components/Config/SelectConfig.tsx new file mode 100644 index 000000000..4abd659fb --- /dev/null +++ b/components/Config/SelectConfig.tsx @@ -0,0 +1,16 @@ +import { Select } from '@mantine/core'; +import { useState } from 'react'; + +export default function SelectConfig(props: any) { + const [value, setValue] = useState(''); + return ( +