station-profile/app/components/hello.jsx

16 lines
223 B
JavaScript

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