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.

7 lines (5 loc) 125 B
import React from 'react' export default ({ name, message }) => <p> <strong>{name}</strong> <em>{message}</em> </p>