File size: 248 Bytes
2e1ab99
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
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;