Browse Source

Fixed Naming Errors (hopefully)

master
Unknown 6 years ago
parent
commit
41588135ba
2 changed files with 3 additions and 3 deletions
  1. +2
    -2
      googletrendsgame/src/App.js
  2. +1
    -1
      googletrendsgame/src/components/createRoomInput.js

+ 2
- 2
googletrendsgame/src/App.js View File

@ -2,8 +2,8 @@ import React, { Component } from 'react';
import logo from './logo.svg';
import './App.css';
import openSocket from 'socket.io-client';
import NicknameInput from './components/NicknameInput';
import CreateRoomInput from './components/CreateRoomInput';
import NicknameInput from './components/nicknameInput';
import CreateRoomInput from './components/createRoomInput';
import RoomList from './components/RoomList';
const socket = openSocket('129.21.91.149:3000');

+ 1
- 1
googletrendsgame/src/components/createRoomInput.js View File

@ -9,7 +9,7 @@ export default class CreateRoomInput extends Component {
passwordFieldValue: '',
capacityFieldValue:''
}
//test Comment
this.onInputChangePass = this.onInputChangePass.bind(this);
this.onInputChangeCapacity = this.onInputChangeCapacity.bind(this);
this.sendRoomData = this.sendRoomData.bind(this);

Loading…
Cancel
Save