1
0
Fork 0
freesewing/sites/dev/components/layouts/bare.mjs
2023-03-26 06:51:11 +02:00

11 lines
265 B
JavaScript

import { useRouter } from 'next/router'
import { AsideNavigation } from 'shared/components/navigation/aside.mjs'
export const ns = []
export const BareLayout = ({ app, children = [] }) => (
<>
<AsideNavigation app={app} mobileOnly />
{children}
</>
)