bolt.diy/app/routes/app.$id.tsx
2025-04-27 13:16:21 -07:00

9 lines
247 B
TypeScript

import { json, type LoaderFunctionArgs } from '~/lib/remix-types';
import { default as IndexRoute } from './_index';
export async function loader(args: LoaderFunctionArgs) {
return json({ appId: args.params.id });
}
export default IndexRoute;