This commit is contained in:
lingdocs 2021-09-18 23:35:26 -04:00
parent 36682d67fb
commit 29ead2fbba
1 changed files with 4 additions and 2 deletions

View File

@ -7,11 +7,13 @@ function GameDisplay({ record: { title, Game, id } }: { record: GameRecord }) {
(t.done === true) && (t.id === id) (t.done === true) && (t.id === id)
)); ));
return <div> return <div>
<div className="d-flex flex-row justify-content-between"> <div className="d-flex flex-row justify-content-between align-items-center">
<div> <div>
<h4 className="my-4"><span role="img" aria-label="">🎮</span> {title}</h4> <h4 className="my-4"><span role="img" aria-label="">🎮</span> {title}</h4>
</div> </div>
<div>{completed ? "✅" : ""}</div> <div>
<h4>{completed ? "✅" : ""}</h4>
</div>
</div> </div>
<Game /> <Game />
</div> </div>