// Hooks import { useContext } from 'react' import { LoadingContext } from 'shared/context/loading-context.mjs' import { Ribbon } from 'shared/components/ribbon.mjs' export const HeaderWrapper = ({ show, children }) => { const { loading } = useContext(LoadingContext) return (
{' '} {children}
) } export const shownHeaderSelector = 'group-[.header-shown]/layout:'