refactor(newappeal): extract BuildCheckSection presentation components (Slice 5) Related work items: #22586
12 lines
365 B
JavaScript
12 lines
365 B
JavaScript
const FinalisingStatePanel = ({ heading, label, waitLabel }) => {
|
|
return (
|
|
<div className="">
|
|
<h3 className="govuk-heading-m govuk-!-margin-top-9">{heading}</h3>
|
|
<p className="govuk-body">{label}</p>
|
|
<p className="govuk-body textloading">{waitLabel}</p>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default FinalisingStatePanel;
|