Skip to content

Commit

Permalink
fix: add "root" div to UI layout
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Edgar <[email protected]>
  • Loading branch information
MikeEdgar committed Aug 29, 2024
1 parent db3c3dc commit 18ee4d7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ui/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ type Props = {
export default function RootLayout({ children }: Props) {
return (
<html lang="en">
<body>{children}</body>
<body>
<div id="root">{children}</div>
</body>
</html>
);
}

0 comments on commit 18ee4d7

Please sign in to comment.