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)
|
||||
));
|
||||
return <div>
|
||||
<div className="d-flex flex-row justify-content-between">
|
||||
<div className="d-flex flex-row justify-content-between align-items-center">
|
||||
<div>
|
||||
<h4 className="my-4"><span role="img" aria-label="">🎮</span> {title}</h4>
|
||||
</div>
|
||||
<div>{completed ? "✅" : ""}</div>
|
||||
<div>
|
||||
<h4>{completed ? "✅" : ""}</h4>
|
||||
</div>
|
||||
</div>
|
||||
<Game />
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue