Skip to content

Commit

Permalink
cleaner git diff
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed Feb 3, 2024
1 parent bc76d36 commit d27fddc
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions docs/data/material/guides/nextjs/nextjs.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,9 @@ Inside `app/layout.tsx`, import the `AppRouterCacheProvider` and wrap all elemen
return (
<html lang="en">
<body>
- {props.children}
+ <AppRouterCacheProvider>{props.children}</AppRouterCacheProvider>
+ <AppRouterCacheProvider>
{props.children}
+ </AppRouterCacheProvider>
</body>
</html>
);
Expand Down

0 comments on commit d27fddc

Please sign in to comment.