/* eslint-disable @typescript-eslint/no-explicit-any */ /* eslint-disable @typescript-eslint/no-unsafe-return */ import { TextAreaInput } from '#components/Input' import { ContactInfoForm } from '#components/Profile/Subcomponents/ContactInfoForm' import { GroupSubheaderForm } from '#components/Profile/Subcomponents/GroupSubheaderForm' import type { FormState } from '#types/FormState' import type { Item } from '#types/Item' export const OnepagerForm = ({ item, state, setState, }: { state: FormState setState: React.Dispatch> item: Item }) => { return (
setState((prevState) => ({ ...prevState, text: v, })) } inputStyle='tw:h-48' />
) }