11 lines
238 B
TypeScript
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} />;
|
|
}
|