import { memo } from "react" import {LockedSplitLayout} from "./LockedSplitLayout" export const LeftNavLayout = memo(({ children }: { children: [JSX.Element, JSX.Element] }) => { const leftWidth = 300 return ( {children[0]} {children[1]} ) })