link-stack/apps/link/pages/leafcutter/create.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 Create: NextPage = () => <LeafcutterWrapper path="create" />;
2022-12-02 17:45:14 +01:00
2023-03-15 12:17:43 +00:00
export default Create;