import React from "react"; const Message = ({text}) => (
{text}
); Message.propTypes = { text: React.PropTypes.number.isRequired }; export default Message;