import { h } from 'preact'; import PropTypes from 'prop-types'; /* * The prop also contain timeStamp, which is currently not in used */ const Message = ({ user, message, color, }) => { const spanStyle = { color }; return (
{ user } : { message }
); }; Message.propTypes = { user: PropTypes.string.isRequired, color: PropTypes.string.isRequired, message: PropTypes.string.isRequired, }; export default Message;