mirror of
https://github.com/coleam00/bolt.new-any-llm
synced 2024-12-27 22:33:03 +00:00
9 lines
248 B
TypeScript
9 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;
|