import React from 'react'; interface TitleBarProps { title: string; redirectUrl?: string; showHomeButton?: boolean; } const TitleBar: React.FC = ({ title, redirectUrl, showHomeButton }) => { return (
{title} {showHomeButton && ( )}
); }; export default TitleBar;