This commit is contained in:
parent
1792648e8d
commit
666584e022
@ -107,12 +107,16 @@ export default class Overlay extends Component<OverlayProps, OverlayState> {
|
||||
return (
|
||||
<main>
|
||||
<div>
|
||||
<PlayerStats player={player} />
|
||||
<ScoreStats />
|
||||
</div>
|
||||
<div className="absolute bottom-0 left-0">
|
||||
<SongInfo />
|
||||
{this.state.settings.settings.showPlayerStats && (
|
||||
<PlayerStats player={player} />
|
||||
)}
|
||||
{this.state.settings.settings.showScoreStats && <ScoreStats />}
|
||||
</div>
|
||||
{this.state.settings.settings.showSongInfo && (
|
||||
<div className="absolute bottom-0 left-0">
|
||||
<SongInfo />
|
||||
</div>
|
||||
)}
|
||||
</main>
|
||||
);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user