Extra contents beyond WaniKani
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.
 
 
 
 

11 lines
268 B

export type PageProps = {}
// The `pageContext` that are available in both on the server-side and browser-side
export type PageContext = {
Page: any
pageProps?: PageProps
documentProps?: {
title?: string
description?: string
}
urlPathname?: string
}