import { h, Component } from 'preact'; import PropTypes from 'prop-types'; export default class Chat extends Component { static propTypes = { handleKeyDown: PropTypes.func.isRequired, handleSubmitOnClick: PropTypes.func.isRequired, }; shouldComponentUpdate() { return false; } render() { const { handleSubmitOnClick, handleKeyDown } = this.props; return (