next-app-boilerplate/pages/index.tsx

14 lines
185 B
TypeScript
Raw Normal View History

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