refactor(newappeal): extract BuildSection presentation components (Slice 4) Related work items: #22583
13 lines
379 B
JavaScript
13 lines
379 B
JavaScript
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;
|