sandbox-react/form-csv-form-data/app/components/hello.jsx

19 lines
257 B
JavaScript

import React from 'react';
import PropTypes from 'prop-types';
//destructure props
const Hello = ({msg}) => {
return (
<>
<h3>Hello</h3>
<div>{msg}</div>
</>
);
}
export default Hello
Hello.propTypes = {
msg: PropTypes.string,
};