mirror of https://github.com/portainer/portainer
14 lines
314 B
TypeScript
14 lines
314 B
TypeScript
import { PropsWithChildren } from 'react';
|
|
|
|
import { useHeaderContext } from './HeaderContainer';
|
|
|
|
export function HeaderContent({ children }: PropsWithChildren<unknown>) {
|
|
useHeaderContext();
|
|
|
|
return (
|
|
<div className="breadcrumb-links">
|
|
<div className="pull-left">{children}</div>
|
|
</div>
|
|
);
|
|
}
|