/** @jsx jsx */ import { jsx, get } from "theme-ui" type LayoutWrapperProps = { children: React.ReactNode } const LayoutWrapper = ({ children }: LayoutWrapperProps) => (
[ `1fr`, `1fr`, `1fr`, `${get(t, `sidebar.normal`)} 1fr`, `${get(t, `sidebar.wide`)} 1fr`, ], }} > {children}
) export default LayoutWrapper