2023-01-29 16:44:02 +01:00
|
|
|
import { AsideNavigation } from 'shared/components/navigation/aside.mjs'
|
|
|
|
|
2023-03-26 16:50:46 +02:00
|
|
|
export const ns = []
|
2023-01-29 16:44:02 +01:00
|
|
|
|
2023-04-28 21:23:06 +02:00
|
|
|
export const BareLayout = (props) => (
|
2023-03-26 16:50:46 +02:00
|
|
|
<>
|
2023-04-28 21:23:06 +02:00
|
|
|
<AsideNavigation mobileOnly />
|
|
|
|
{props.children}
|
2023-03-26 16:50:46 +02:00
|
|
|
</>
|
|
|
|
)
|