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