import { string } from 'prop-types'; import './HelpBox.css'; function HelpBox({ title, text }) { return (

{title}

{text}

); } HelpBox.propTypes = { title: string, text: string, }; export default HelpBox;