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 (