© 2026 Hedgehog Software, LLC
// page.tsx function Page() { const form = useAppForm() return ( <> <Filters /> // need to pass `form` prop </> ) }
// filters.tsx function Filters() { const { data: filtersData } = useQuery(); return ( <> {filterData.map((filter) => <Filter filter={filter} />)} // need to pass `form` prop </> ) }
form
withForm
// filter.tsx const Filter = withForm({ defaultValues: formOpts.defaultValues, render: function Render({ form }) { return <form.AppField> {(field) => <div> … </div>} </form.AppField> } });
AppFieldExtendedReactFormApi
https://x.com/tannerlinsley/status/2036583173749162438?s=20
dry-scarlet · 2d ago
TanStack Start is now the fastest full stack React framework: https://x.com/tan_stack/status/2033949459651158042?s=20
dry-scarlet · 2w ago
https://x.com/tan_stack/status/2031128535470104577?s=20
dry-scarlet · 3w ago