mirror of
https://github.com/harivansh-afk/asap.it.git
synced 2026-04-17 13:05:05 +00:00
8 lines
248 B
TypeScript
8 lines
248 B
TypeScript
import { json, type LoaderFunctionArgs } from '@remix-run/cloudflare';
|
|
import { default as IndexRoute } from './_index';
|
|
|
|
export async function loader(args: LoaderFunctionArgs) {
|
|
return json({ id: args.params.id });
|
|
}
|
|
|
|
export default IndexRoute;
|