import { TextInput, InputLabel } from '#components/Input' import type { FormState } from '#types/FormState' export const CrowdfundingForm = ({ state, setState, }: { state: FormState setState: React.Dispatch> }) => { return (
{ setState((prevState) => ({ ...prevState, openCollectiveSlug: v, })) }} />
) }