import { useRecoilValue } from "recoil"; import { SchemaEditAtom } from "../../recoil/atoms/schema"; import { TEMPLATE_TYPES } from "../../constants/TemplateTypes"; import { FC, PropsWithChildren } from "react"; interface IProps { bind: InputBinder; } export const FieldTypeInput: FC> = ({ bind }) => { const schema = useRecoilValue(SchemaEditAtom); return ( ); };