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 28, 2024
1 parent edc42e1 commit ef7f4cf
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 ef7f4cf

Please sign in to comment.