aboutsummaryrefslogtreecommitdiff
path: root/src/components/Scoreboard/Solution.js
diff options
context:
space:
mode:
authorEugene <eug-vs@keemail.me>2020-01-02 20:19:22 +0000
committerGitHub <noreply@github.com>2020-01-02 20:19:22 +0000
commitc17e83619f4ec7783261ea9ba2a4dffc8b5cad49 (patch)
tree7366f1896c07973a0e1f6be2a00a8e7b1ac16efb /src/components/Scoreboard/Solution.js
parent1398e9579be8a0ad478ef16085b431fbb97311f1 (diff)
parent6bc5060db0f87a767a3caa2be6cf68d243b8d70f (diff)
downloadchrono-cube-ui-c17e83619f4ec7783261ea9ba2a4dffc8b5cad49.tar.gz
Merge branch 'master' into timer
Diffstat (limited to 'src/components/Scoreboard/Solution.js')
-rw-r--r--src/components/Scoreboard/Solution.js32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/components/Scoreboard/Solution.js b/src/components/Scoreboard/Solution.js
new file mode 100644
index 0000000..3f46eb5
--- /dev/null
+++ b/src/components/Scoreboard/Solution.js
@@ -0,0 +1,32 @@
+import React from 'react';
+
+import {
+ Card,
+ CardContent,
+ Typography,
+ Paper,
+} from "@material-ui/core";
+
+import styled from "styled-components";
+
+const Solution = ({ solution }) => {
+
+ const author = solution.author? solution.author : 'anonymous';
+ return (
+ <PaperWrapper elevation={2} style={{backgroundColor: "#ddbea3"}}>
+ <Typography variant="h4" style={{fontWeight: "bold"}}>
+ { solution.result }
+ </Typography>
+ <Typography>
+ by {author}
+ </Typography>
+ </PaperWrapper>
+ )
+};
+
+const PaperWrapper = styled(Card)`
+ padding: 10px;
+ margin: 25px;
+`;
+
+export default Solution; \ No newline at end of file