ยฉ 2026 Hedgehog Software, LLC
const myAction = action(async function myAction(formData: FormData) { console.log(formData.get("image")) }) function CreateItem() { <form action={myAction} method="post"> <input type="file" name="image" /> </form> }