0
1
JRJose Romero
The above code imports the ActionFunction constructor and exports an action function that accepts an empty request object and returns a formData object.
Library: remix
Shortcut: remix.actionfunction.create
import { ActionFunction } from "remix";
export const action: ActionFunction = async ({ request }) => {
const formData = await request.formData();
};