right-tree/frontend/src/components/steps/StepInformation.js
Dana Lambert 06e33d7ac6 Some refactoring of existing information panels
- extracting out static strings where possible
- create StepInformation component
- rename step components to end in 'Step'
2021-10-20 16:15:15 +13:00

9 lines
201 B
JavaScript

export default function StepInformation(props) {
return (
<div className='ph-4'>
<h4>{props.title}</h4>
<br/>
{props.description}
</div>
)
}