diff --git a/googletrendsgame/src/App.js b/googletrendsgame/src/App.js index d17fa7b..aaf0a13 100644 --- a/googletrendsgame/src/App.js +++ b/googletrendsgame/src/App.js @@ -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'); diff --git a/googletrendsgame/src/components/createRoomInput.js b/googletrendsgame/src/components/createRoomInput.js index 65e4ed3..39cab29 100644 --- a/googletrendsgame/src/components/createRoomInput.js +++ b/googletrendsgame/src/components/createRoomInput.js @@ -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);