bolt.diy/app/routes/problem.$id.tsx
2025-01-17 14:05:03 -08:00

9 lines
255 B
TypeScript

import { json, type LoaderFunctionArgs } from '@remix-run/cloudflare';
import { default as IndexRoute } from './_index';
export async function loader(args: LoaderFunctionArgs) {
return json({ problemId: args.params.id });
}
export default IndexRoute;