Skip to content

Commit

Permalink
refactor(examples/*): remove redundant main class an main tag
Browse files Browse the repository at this point in the history
  • Loading branch information
marcalexiei committed Jan 2, 2025
1 parent f6c9431 commit 257c814
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/tuono-app/src/routes/__root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default function RootRoute({ children }: RootRouteProps): JSX.Element {
return (
<html>
<body>
<main className="main">{children}</main>
<main>{children}</main>
</body>
</html>
)
Expand Down
2 changes: 1 addition & 1 deletion examples/with-mdx/src/routes/__root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default function RootRoute({ children }: RootRouteProps): JSX.Element {
return (
<html>
<body>
<main className="main">
<main>
<MDXProvider components={{}}>{children}</MDXProvider>
</main>
</body>
Expand Down

0 comments on commit 257c814

Please sign in to comment.