Hello! I am trying to include some components into the top-level of the project, but it doesn't seem tot work. This is what my top level would look like in current NextJS versions:
`
import '../styles/globals.css'
import { ChainId, ThirdwebProvider } from '@thirdweb-dev/react'
function MyApp({ Component, pageProps }) {
const activeChainId = ChainId.Goerli
return (
<ThirdwebProvider
desiredChainId={activeChainId}
chainRpc={{
[activeChainId]: process.env.INFURA
}}
>
<Component {...pageProps} />
</ThirdwebProvider>
)
}
export default MyApp
`
How can I do this in NextJS 13?