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