import { ReactNode } from 'react'; import { Box } from './Box'; import { Container } from './Container'; export interface HeaderProps { children: ReactNode; actions?: ReactNode; } export const Header = ({ children, actions }: HeaderProps) => { return ( {children} {actions && ( {actions} )} ); };