Skip to content

Commit

Permalink
removed settings button
Browse files Browse the repository at this point in the history
  • Loading branch information
DashaBes authored and DennisTismenko committed Mar 11, 2020
1 parent 105812c commit 3f427bf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/quiz/Quiz.react.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import classes from './Quiz.module.css';
import Timer from '../components/core/UI/Timer.react';
import ProgressRing from './components/QuizProgress.react';
import QuizScore from './components/QuizScore.react';
import IconWrapper from '../components/core/UI/IconWrapper.react';
// import IconWrapper from '../components/core/UI/IconWrapper.react';
import QuizEnd from './QuizEnd.react';

const getTimerHash = () => `timer_${getStringHash('timer', Date.now())}`;
Expand Down Expand Up @@ -72,13 +72,13 @@ const Quiz = ({data, setData, finishQuiz, restartQuiz}) => {
<ProgressRing current={questionIndex + 1} total={data.length} />
<QuizScore current={score} total={answered} />
</VerticalLayout>
<div className={classes.SettingsButton}>
{/* <div className={classes.SettingsButton}>
<IconWrapper iconType="gear" iconSize={1.5}>
<div className={classes.SettingsButtonText}>
<Button type="link" value="settings"></Button>
</div>
</IconWrapper>
</div>
</div> */}
</div>
</Sidebar>
<VerticalLayout center="middle">
Expand Down

0 comments on commit 3f427bf

Please sign in to comment.