You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
portainer/app/react/components/PageHeader/HeaderContainer.tsx

27 lines
682 B

import { PropsWithChildren, createContext, useContext } from 'react';
import './HeaderContainer.css';
const Context = createContext<null | boolean>(null);
export function useHeaderContext() {
const context = useContext(Context);
if (context == null) {
throw new Error('Should be nested inside a HeaderContainer component');
}
}
export function HeaderContainer({ children }: PropsWithChildren<unknown>) {
return (
<Context.Provider value>
<div className="row header">
<div id="loadingbar-placeholder" />
<div className="col-xs-12">
<div className="meta">{children}</div>
</div>
</div>
</Context.Provider>
);
}