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

7 lines
183 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 FAQ: NextPage = () => <LeafcutterWrapper path="faq" />;
2022-12-02 17:45:14 +01:00
2023-03-15 12:17:43 +00:00
export default FAQ;