aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/index.js4
-rw-r--r--src/pages/Scoreboard/Scoreboard.js (renamed from src/components/Scoreboard/Scoreboard.js)8
-rw-r--r--src/pages/TimerPage/Timer/Timer.js (renamed from src/components/TimerPage/Timer/Timer.js)0
-rw-r--r--src/pages/TimerPage/TimerPage.js (renamed from src/components/TimerPage/TimerPage.js)8
4 files changed, 10 insertions, 10 deletions
diff --git a/src/index.js b/src/index.js
index 431e139..ed053a6 100644
--- a/src/index.js
+++ b/src/index.js
@@ -7,8 +7,8 @@ import { ThemeProvider, makeStyles } from '@material-ui/core/styles';
import theme from "./theme";
import Header from './components/Header/Header';
-import TimerPage from "./components/TimerPage/TimerPage";
-import Scoreboard from "./components/Scoreboard/Scoreboard";
+import TimerPage from "./pages/TimerPage/TimerPage";
+import Scoreboard from "./pages/Scoreboard/Scoreboard";
const useStyles = makeStyles(theme => ({
diff --git a/src/components/Scoreboard/Scoreboard.js b/src/pages/Scoreboard/Scoreboard.js
index 2d9bb80..61275c1 100644
--- a/src/components/Scoreboard/Scoreboard.js
+++ b/src/pages/Scoreboard/Scoreboard.js
@@ -4,10 +4,10 @@ import { makeStyles } from "@material-ui/core/styles";
import { get } from "../../requests";
-import SmartList from "../SmartList/SmartList";
-import SolutionCard from "../SolutionCard/SolutionCard";
-import Loading from "../Loading/Loading";
-import Window from "../Window/Window";
+import SmartList from "../../components/SmartList/SmartList";
+import SolutionCard from "../../components/SolutionCard/SolutionCard";
+import Loading from "../../components/Loading/Loading";
+import Window from "../../components/Window/Window";
const useStyles = makeStyles(theme => ({
diff --git a/src/components/TimerPage/Timer/Timer.js b/src/pages/TimerPage/Timer/Timer.js
index 92b153d..92b153d 100644
--- a/src/components/TimerPage/Timer/Timer.js
+++ b/src/pages/TimerPage/Timer/Timer.js
diff --git a/src/components/TimerPage/TimerPage.js b/src/pages/TimerPage/TimerPage.js
index 22781bc..591eb7b 100644
--- a/src/components/TimerPage/TimerPage.js
+++ b/src/pages/TimerPage/TimerPage.js
@@ -2,11 +2,11 @@ import React from 'react';
import { post } from '../../requests';
-import Window from "../Window/Window";
-import ContentSection from "../ContentSection/ContentSection";
+import Window from "../../components/Window/Window";
+import ContentSection from "../../components/ContentSection/ContentSection";
import Timer from "./Timer/Timer";
-import SmartList from "../SmartList/SmartList";
-import SolutionCard from "../SolutionCard/SolutionCard";
+import SmartList from "../../components/SmartList/SmartList";
+import SolutionCard from "../../components/SolutionCard/SolutionCard";
import { Typography, makeStyles } from "@material-ui/core";