frontpage/pages/index.tsx

10 lines
122 B
TypeScript
Raw Normal View History

2021-11-30 23:48:54 +01:00
import type { NextPage } from 'next'
const Home: NextPage = () => {
return (
2021-12-14 22:47:12 +01:00
<>Hallu</>
2021-11-30 23:48:54 +01:00
)
}
export default Home