Merged PR 2237: refactor(newappeal): extract BuildSection presentation components (Slice 4)

refactor(newappeal): extract BuildSection presentation components (Slice 4)

Related work items: #22583
This commit is contained in:
Robert Bond
2026-04-13 10:15:56 +00:00
parent d0f667ffbb
commit 869264b7fa
7 changed files with 123 additions and 109 deletions
@@ -0,0 +1,12 @@
const SidebarProgressPanel = ({ children }) => {
return (
<div className="govuk-grid-column-one-third">
<div className="at-nav-container">
{children}
<hr className="govuk-section-break govuk-section-break--m govuk-section-break--visible" />
</div>
</div>
);
};
export default SidebarProgressPanel;