diff options
author | Eug-VS <eug-vs@keemail.me> | 2020-01-03 22:48:18 +0300 |
---|---|---|
committer | Eug-VS <eug-vs@keemail.me> | 2020-01-03 22:48:18 +0300 |
commit | a7b17c6f460031c8caf0b3f6173b817b4a6cc8fa (patch) | |
tree | c044f7cd6c2b2a829e09372859f25efafe54b440 /src/components/Scoreboard/Scoreboard.js | |
parent | b58864eb04e1776e73f05c41ef986a6bfc58d5c1 (diff) | |
download | chrono-cube-ui-a7b17c6f460031c8caf0b3f6173b817b4a6cc8fa.tar.gz |
Remove page name from blank pages.
Diffstat (limited to 'src/components/Scoreboard/Scoreboard.js')
-rw-r--r-- | src/components/Scoreboard/Scoreboard.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/components/Scoreboard/Scoreboard.js b/src/components/Scoreboard/Scoreboard.js index 5545d19..1235f9a 100644 --- a/src/components/Scoreboard/Scoreboard.js +++ b/src/components/Scoreboard/Scoreboard.js @@ -1,6 +1,6 @@ -import React, {useEffect, useState} from 'react'; +import React, { useEffect, useState } from 'react'; -import { Container } from "@material-ui/core"; +import { Container, Typography } from "@material-ui/core"; import { get } from "../../requests"; import Solution from "./Solution"; @@ -21,6 +21,7 @@ const Scoreboard = () => { return ( <Container maxWidth="sm"> + <Typography variant="h3" style={{textAlign: 'center'}}>Scoreboard</Typography> {solutions.map(solution => (<Solution solution={solution}/>))} </Container> ); |