right-tree/frontend/src/components/steps/StepInformation.js

10 lines
201 B
JavaScript
Raw Normal View History

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