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

12 lines
231 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) {
<LeafcutterWrapper path={view} />;
}