next-app-boilerplate/pages/index.tsx

14 lines
181 B
TypeScript
Raw Normal View History

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