import './style.css'; type SeparatorProps = { pageName: String, pageLink: string, secondLink?: string, } function SeparatorWithAnchor(props: SeparatorProps) { return (

{props.pageName}

{props.secondLink && View all }
) } export default SeparatorWithAnchor;