Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. socket.on("start game", () => {
  2. this.props.history.push(`/${this.props.match.params.pin}`);
  3. });
  4.  
  5. socket.emit("start");
  6.  
  7. socket.on('start', () => {
  8. socket.emit('start game');
  9. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement