UNPKG

simple-chat-websocket-reactjs

Version:

### Props: In this article we will create a simple chat using websocket, nodeJs and ReactJs. From there you can play around and explore and add your own ideas and features.

16 lines (13 loc) 244 B
import React, { Component } from 'react' import logo from './logo.svg' import Chat from './Chat' class App extends Component { render() { return ( <div className="App"> <Chat /> </div> ) } } export default App