rsnext/examples/blog-with-comment/pages/_app.tsx
Max Proske 5dd4999b64
Convert many examples to TypeScript (#41825)
Strategized with @balazsorban44 to open one larger PR, with changes to individual examples as separate commits. 

For each example, I researched how multiple realworld codebases use the featured technology with TypeScript, to thoughtfully convert them by hand - nothing automated whatsoever.

## Documentation / Examples

- [X] Make sure the linting passes by running `pnpm lint`
- [X] The "examples guidelines" are followed from [our contributing doc](https://github.com/vercel/next.js/blob/canary/contributing/examples/adding-examples.md)
2022-10-26 20:28:55 +00:00

30 lines
815 B
TypeScript

import 'tailwindcss/tailwind.css'
import type { AppProps } from 'next/app'
import Head from 'next/head'
import Header from '../components/header'
import { Auth0Provider } from '@auth0/auth0-react'
export default function MyApp({ Component, pageProps }: AppProps) {
return (
<Auth0Provider
clientId={process.env.NEXT_PUBLIC_AUTH0_CLIENT_ID}
domain={process.env.NEXT_PUBLIC_AUTH0_DOMAIN}
>
<Head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="description"
content="Clone and deploy your own Next.js portfolio in minutes."
/>
<title>My awesome blog</title>
</Head>
<Header />
<main className="py-14">
<Component {...pageProps} />
</main>
</Auth0Provider>
)
}