link-stack/apps/link/pages/leafcutter/index.tsx

7 lines
192 B
TypeScript
Raw Normal View History

2023-05-25 12:37:14 +00:00
import { NextPage } from "next";
import { LeafcutterWrapper } from "components/LeafcutterWrapper";
2022-12-02 17:45:14 +01:00
2023-05-25 12:37:14 +00:00
const Dashboard: NextPage = () => <LeafcutterWrapper path="" />;
2022-12-02 17:45:14 +01:00
2023-05-25 12:37:14 +00:00
export default Dashboard;