bolt.new/app/routes/chat.$id.tsx
2024-09-26 17:45:41 +01:00

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;