aboutsummaryrefslogtreecommitdiff
path: root/src/components/Scoreboard/Scoreboard.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Scoreboard/Scoreboard.js')
-rw-r--r--src/components/Scoreboard/Scoreboard.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/Scoreboard/Scoreboard.js b/src/components/Scoreboard/Scoreboard.js
index 1235f9a..399a017 100644
--- a/src/components/Scoreboard/Scoreboard.js
+++ b/src/components/Scoreboard/Scoreboard.js
@@ -3,7 +3,7 @@ import React, { useEffect, useState } from 'react';
import { Container, Typography } from "@material-ui/core";
import { get } from "../../requests";
-import Solution from "./Solution";
+import SolutionCard from "../SolutionCard/SolutionCard";
const Scoreboard = () => {
@@ -22,7 +22,7 @@ const Scoreboard = () => {
return (
<Container maxWidth="sm">
<Typography variant="h3" style={{textAlign: 'center'}}>Scoreboard</Typography>
- {solutions.map(solution => (<Solution solution={solution}/>))}
+ {solutions.map(solution => (<SolutionCard solution={solution}/>))}
</Container>
);
};