export default function Container({ children, chart = true, className = "" }) { return (
{children}
{ chart &&
} { !chart &&
}
); }