6 lines
176 B
TypeScript
6 lines
176 B
TypeScript
import type { ActionFunctionArgs } from "@remix-run/server-runtime";
|
|
|
|
export function action({ request }: ActionFunctionArgs) {
|
|
return new Response(null, { status: 200 });
|
|
}
|