import * as React from "react"; import { FunctionComponent } from "react";; const HeaderBar: FunctionComponent<{ color?: string }> = ({children, color }) => { return (
{children}
) } export default HeaderBar;