link-stack/apps/link/app/(main)/leafcutter/[view]/page.tsx
2023-07-21 12:26:02 +00:00

11 lines
238 B
TypeScript

import { LeafcutterWrapper } from "./_components/LeafcutterWrapper";
type PageProps = {
params: {
view: string;
};
};
export default function Page({ params: { view } }: PageProps) {
return <LeafcutterWrapper path={view} />;
}