ยฉ 2026 Hedgehog Software, LLC
export function SomeComponent(props) { const [action, { Form }] = createServerAction$(async (formData: FormData) => { console.log('validationStuff'); return true; }); return ( <Form>...</Form> ); }