/*
* The default full-page FreeSewing layout
*/
export const BaseLayout = ({ children = [] }) => (
{children}
)
/*
* The left column of the default layout
*/
export const BaseLayoutLeft = ({ children = [] }) => (
{children}
)
/*
* The right column of the default layout
*/
export const BaseLayoutRight = ({ children = [] }) => (
{children}
)
/*
* The main column for prose (text like docs and so on)
*/
export const BaseLayoutProse = ({ children = [] }) => (
{children}
)
/*
* The central column for wide content (no max-width)
*/
export const BaseLayoutWide = ({ children = [] }) => (
{children}
)