import './HelpBox.css'; function HelpBox({ title, text }) { return (

{title}

{text}

); } export default HelpBox;