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