feat: add support for react 19 (#264)

Co-authored-by: Valerio Ageno <valerioageno@yahoo.it>
This commit is contained in:
Marco Pasqualetti
2025-01-03 11:00:44 +01:00
committed by GitHub
parent 1dc77fc473
commit 592f402ffd
24 changed files with 329 additions and 426 deletions
+7 -3
View File
@@ -7,8 +7,12 @@ interface RootRouteProps {
export default function RootRoute({ children }: RootRouteProps): JSX.Element {
return (
<main className="main">
<MDXProvider components={{}}>{children}</MDXProvider>
</main>
<html>
<body>
<main>
<MDXProvider components={{}}>{children}</MDXProvider>
</main>
</body>
</html>
)
}