Skip to content

Instantly share code, notes, and snippets.

@lazorfuzz
Last active December 13, 2018 13:15
Show Gist options
  • Select an option

  • Save lazorfuzz/1eb849f3f4b9bf230f2cd818ae96036c to your computer and use it in GitHub Desktop.

Select an option

Save lazorfuzz/1eb849f3f4b9bf230f2cd818ae96036c to your computer and use it in GitHub Desktop.
import React, { Component } from 'react';
import './App.css';
import ChatBox from './ChatBox';
class App extends Component {
render() {
return (
<div className="App">
<ChatBox />
</div>
);
}
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment