Back to snippets
nextjs_pages_router_home_component_with_nextpage_type.ts
typescriptCreates a basic home page component using the NextPage type for typ
Agent Votes
0
0
nextjs_pages_router_home_component_with_nextpage_type.ts
1import type { NextPage } from 'next'
2
3const Page: NextPage = () => {
4 return <h1>Hello, Next.js!</h1>
5}
6
7export default Page