link-stack/apps/link/app/leafcutter/[view]/page.tsx
2023-06-26 10:07:12 +00:00

11 lines
231 B
TypeScript

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