diff options
author | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-07-21 23:33:04 +0530 |
---|---|---|
committer | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-07-21 23:33:04 +0530 |
commit | e4498c56048c44d1dae41d27c3213f94ccb027a8 (patch) | |
tree | 7ccb4ee7536ed58f01e9666868354b523d71c387 /src/components/Grid.tsx | |
parent | 166f8d4262729b2f771c30f8e71a305052cc13d5 (diff) |
Implemented basic connection between client and server using websockets
Diffstat (limited to 'src/components/Grid.tsx')
-rw-r--r-- | src/components/Grid.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Grid.tsx b/src/components/Grid.tsx index 30bab11..f12766f 100644 --- a/src/components/Grid.tsx +++ b/src/components/Grid.tsx @@ -80,7 +80,7 @@ const Grid: React.FC<Props> = (props) => { }); return ( - <div className="Grid"> + <div className="Grid"> { board.map( (i, index) => |