Server Actions are async functions that run on the server but can be called directly from your components (including from forms and event handlers) — letting you perform mutations (create/update/delete) without manually building an API endpoint. You mark them with the "use server" directive.
Defining and using one
;
{ revalidatePath } ;
() {
title = formData.() ;
db..({ : { title } });
();
}
