6 lines
136 B
TypeScript
6 lines
136 B
TypeScript
|
import type { ActionFunction } from "@remix-run/node";
|
||
|
|
||
|
export const action: ActionFunction = async ({ request }) => {
|
||
|
return null;
|
||
|
};
|