import { ArrowLeftOutlined } from '@ant-design/icons' import './PageHeader.css' function PageHeader({ title, description, icon, showBack = false, onBack, extra }) { return (
{showBack && ( )}
{icon &&
{icon}
}

{title}

{description && (

{description}

)}
{extra &&
{extra}
}
) } export default PageHeader