Эх сурвалжийг харах

Moving the loading component into util

Kirk Trombley 5 жил өмнө
parent
commit
517eeea155

+ 1 - 1
client/src/components/player-scores.component/player-scores.component.jsx

@@ -1,6 +1,6 @@
 import React, { useState, useEffect } from 'react';
 import { gameInfo } from '../../services/ggsh.service';
-import Loading from '../loading.component';
+import Loading from '../util/loading.component';
 import PlayerScores from "./player-score-list.component";
 
 const PlayerScoresContainer = ({ gameId, onReturnToStart }) => {

+ 1 - 1
client/src/components/pre-game.component/pre-game.component.jsx

@@ -1,5 +1,5 @@
 import React, { useState } from "react";
-import Loading from "../loading.component";
+import Loading from "../util/loading.component";
 import PlayerNameInput from "./player-name-input.component";
 import JoinGameInput from "./join-game-input.component";
 import { createGame, joinGame } from "../../services/ggsh.service";

+ 0 - 0
client/src/components/loading.component.jsx → client/src/components/util/loading.component.jsx