bolt.new/app/routes/chat.$id.tsx

9 lines
248 B
TypeScript
Raw Normal View History

2024-08-22 08:11:38 +00:00
import { json, type LoaderFunctionArgs } from '@remix-run/cloudflare';
2024-07-25 13:03:38 +00:00
import { default as IndexRoute } from './_index';
export async function loader(args: LoaderFunctionArgs) {
2024-09-26 16:45:41 +00:00
return json({ id: args.params.id });
2024-07-25 13:03:38 +00:00
}
export default IndexRoute;