refactor(newappeal): extract BuildCheckSection presentation components (Slice 5) Related work items: #22586
6 lines
142 B
JavaScript
6 lines
142 B
JavaScript
const CheckSectionHeading = ({ title }) => {
|
|
return <h1 className="govuk-heading-m">{title}</h1>;
|
|
};
|
|
|
|
export default CheckSectionHeading;
|