b4cfe6a
5db834e
2a29fbb
5db834e
|
|
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;
|