import React, { ReactElement } from "react"; import { Link } from "react-router-dom"; type IHeaderProps = { headerContent: string; subHeaderContent: string; iconClassNames: string; link?: string; }; export const Header = (props: IHeaderProps): ReactElement => { return (
{props.subHeaderContent}