Put button inside div and rearranged some code.

This commit is contained in:
wildscotsmen 2018-10-25 20:53:17 -04:00
parent 19e24a2747
commit 760c5b77de
1 changed files with 9 additions and 13 deletions

View File

@ -272,24 +272,20 @@ class QuizGame extends React.Component {
const { classes } = this.props;
return (
<Fragment>
{
// Tabs
<div className={classes.root}>
<Typography variant="headline" align="center">
<Grid container justify="center">
<Quiz quiz={this.state.difficulty} key={this.state.key} />
</Grid>
</Typography>
</div>
}
// Tabs
<div className={classes.root}>
<Typography variant="headline" align="center">
<Grid container justify="center">
<Quiz quiz={this.state.difficulty} key={this.state.key} />
</Grid>
</Typography>
<Typography align="center">
<Button variant="contained" color="default" className={classes.button} onClick={this.reset}>
Reset
<RefreshIcon className={classes.rightIcon} />
<RefreshIcon className={classes.rightIcon} />
</Button>
</Typography>
</Fragment>
</div>
);
}
}