Template for starting apps, powered by Next.js
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.
 
 

13 lines
238 B

  1. import * as React from 'react'
  2. type Props = {
  3. Component: React.ElementType
  4. pageProps: Record<string, unknown>
  5. }
  6. const MyApp: React.FC<Props> = ({Component, pageProps}) => {
  7. return <Component {...pageProps} />
  8. }
  9. export default MyApp