Skip to content

Instantly share code, notes, and snippets.

@bookercodes
Last active June 4, 2018 16:10
Show Gist options
  • Save bookercodes/edd6977a1af88f1c7179a59c9803db3f to your computer and use it in GitHub Desktop.
Save bookercodes/edd6977a1af88f1c7179a59c9803db3f to your computer and use it in GitHub Desktop.
// ./src/Chat.js
import React, { Component } from 'react'
class Chat extends Component {
render() {
return (
<div>
<h1>Chat</h1>
</div>
)
}
}
export default Chat
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment