You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
299 B
15 lines
299 B
import type {NextPageWithLayout} from './_app'
|
|
import type { ReactElement } from 'react'
|
|
import Layout from '../components/layout'
|
|
|
|
const Page: NextPageWithLayout = () => {
|
|
return (
|
|
<p>yo</p>
|
|
)
|
|
}
|
|
|
|
Page.getLayout = (page: ReactElement) => {
|
|
return <Layout>{page}</Layout>
|
|
}
|
|
export default Page
|
|
|
|
|