import { Typography } from "@material-ui/core"; import VerticalSpacer from "@saleor/apps/components/VerticalSpacer"; import React from "react"; interface PageSectionHeaderProps { title?: string; description?: string; } const PageSectionHeader: React.FC = props => { const { title, description } = props; return (
{title && {title}} {title && description && } {description && {description}}
); }; PageSectionHeader.displayName = "PageSectionHeader"; export default PageSectionHeader;