10LOC

#forms

Reactintermediate

A form calling a Server Action directly, no client fetch

const subscribers = new Set<string>();

async function subscribeToNewsletter(formData: FormData) {
  "use server";

Wire a form straight to a Server Action with the action prop, skipping the client fetch, JSON body, and API route entirely.