Skip to content

Instantly share code, notes, and snippets.

@AntonioErdeljac
Created October 31, 2017 00:17
Show Gist options
  • Save AntonioErdeljac/fc2c80d9db26064b65cac3c335d63ee1 to your computer and use it in GitHub Desktop.
Save AntonioErdeljac/fc2c80d9db26064b65cac3c335d63ee1 to your computer and use it in GitHub Desktop.
import React, { Component } from 'react';
import Chat from "./Chat";
class App extends Component {
render() {
return (
<div>
<Chat/>
</div>
);
}
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment