1
0
Fork 0
freesewing/sites/dev/components/layouts/bare.mjs

11 lines
225 B
JavaScript
Raw Normal View History

import { AsideNavigation } from 'shared/components/navigation/aside.mjs'
2023-03-26 06:50:59 +02:00
export const ns = []
2023-03-26 06:50:59 +02:00
export const BareLayout = ({ app, children = [] }) => (
<>
<AsideNavigation app={app} mobileOnly />
{children}
</>
)