diff --git a/packages/pl-fe/src/components/ui/layout.tsx b/packages/pl-fe/src/components/ui/layout.tsx index 25c84986d..c010a3daa 100644 --- a/packages/pl-fe/src/components/ui/layout.tsx +++ b/packages/pl-fe/src/components/ui/layout.tsx @@ -25,13 +25,12 @@ interface LayoutComponent extends React.FC { /** Layout container, to hold Sidebar, Main, and Aside. */ const Layout: LayoutComponent = ({ children, fullWidth }) => ( -
+
@@ -42,8 +41,8 @@ const Layout: LayoutComponent = ({ children, fullWidth }) => ( /** Left sidebar container in the UI. */ const Sidebar: React.FC = ({ children, shrink }) => ( -
- +
+ {children}
@@ -56,8 +55,8 @@ const Main: React.FC> = ({ children, classN return (
{children} @@ -67,8 +66,8 @@ const Main: React.FC> = ({ children, classN /** Right sidebar container in the UI. */ const Aside: React.FC = ({ children }) => ( -