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