bolt.diy/app/routes/load-problem.$id.tsx
2025-02-10 20:18:54 -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;