Skip to content

Commit

Permalink
Update game.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
artialex authored Mar 6, 2024
1 parent 7d64264 commit 56a9692
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/game.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,11 @@ export const Game = observer(() => {
{col.map((row, rind) => (
<div
className={cx(
"bg-slate-100 w-6 h-6 flex justify-center items-center rounded",
"w-6 h-6 flex justify-center items-center rounded",
{
"bg-green-200": row === "S",
"bg-red-200": row === "F",
"bg-slate-100": row === "_"
}
)}
key={rind}
Expand Down

0 comments on commit 56a9692

Please sign in to comment.