refactor(newappeal): extract BuildSection presentation components (Slice 4) Related work items: #22583
6 lines
132 B
JavaScript
6 lines
132 B
JavaScript
const SectionHeader = ({ title }) => {
|
|
return <h1 className="govuk-heading-m ">{title}</h1>;
|
|
};
|
|
|
|
export default SectionHeader;
|