format
This commit is contained in:
parent
36682d67fb
commit
29ead2fbba
|
@ -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>
|
||||||
|
|
Loading…
Reference in New Issue