import './TitleBar.scss' interface TitleBarProps { title?: string } function TitleBar({ title }: TitleBarProps = {}) { return (
WeFlow {title || 'WeFlow'}
) } export default TitleBar