link-stack/apps/link/app/(main)/leafcutter/[view]/page.tsx

12 lines
238 B
TypeScript
Raw Normal View History

2023-06-26 10:07:12 +00:00
import { LeafcutterWrapper } from "./_components/LeafcutterWrapper";
type PageProps = {
params: {
view: string;
};
};
export default function Page({ params: { view } }: PageProps) {
2023-07-21 12:26:02 +00:00
return <LeafcutterWrapper path={view} />;
2023-06-26 10:07:12 +00:00
}