- extracting out static strings where possible - create StepInformation component - rename step components to end in 'Step'
9 lines
201 B
JavaScript
9 lines
201 B
JavaScript
export default function StepInformation(props) {
|
|
return (
|
|
<div className='ph-4'>
|
|
<h4>{props.title}</h4>
|
|
<br/>
|
|
{props.description}
|
|
</div>
|
|
)
|
|
}
|