Guest User

Untitled

a guest
May 25th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. import React from 'react';
  2.  
  3. class ChatComponent extends React.Component {
  4. constructor(props) {
  5. super(props);
  6. }
  7. render() {
  8. return (
  9. <div>{this.props.chat}</div>
  10. );
  11. }
  12. }
  13.  
  14. export default ChatComponent;
Add Comment
Please, Sign In to add comment