diff --git a/docs/components/clerk-provider.mdx b/docs/components/clerk-provider.mdx index a0950a2351..65d24297be 100644 --- a/docs/components/clerk-provider.mdx +++ b/docs/components/clerk-provider.mdx @@ -7,22 +7,6 @@ The `` component is required for integrating Clerk into your Reac The recommended approach is to wrap your entire app with `` at the entry point, making authentication globally accessible. However, you can place `` deeper in the component tree if your app has specific routes or areas that require authentication. This flexibility allows you to implement Clerk's functionality exactly where needed without affecting the rest of your app. -Starting with v6, `` no longer opts your entire app into dynamic rendering by default. To enable dynamic rendering, see the [upgrade guide](/docs/upgrade-guides/nextjs/v6.mdx). - -```tsx {{ filename: 'app/layout.tsx' }} -import { ClerkProvider } from '@clerk/nextjs' - -export default function RootLayout({ children }) { - return ( - - - {children} - - - ) -} -``` - ## Usage The `` component must be added to your React entrypoint.