20 lines
294 B
React
20 lines
294 B
React
import { string } from 'prop-types';
|
|
|
|
import './HelpBox.css';
|
|
|
|
function HelpBox({ title, text }) {
|
|
return (
|
|
<article className="help-box">
|
|
<h2>{title}</h2>
|
|
<p>{text}</p>
|
|
</article>
|
|
);
|
|
}
|
|
|
|
HelpBox.propTypes = {
|
|
title: string,
|
|
text: string,
|
|
};
|
|
|
|
export default HelpBox;
|