next-app-boilerplate/pages/index.tsx

8 lines
111 B
TypeScript
Raw Normal View History

2022-02-12 23:07:11 +01:00
import type { NextPage } from "next";
const Home: NextPage = () => {
return <></>;
};
export default Home;