Showing
1 changed file
with
12 additions
and
0 deletions
web/src/pages/Room.tsx
0 → 100644
1 | +import React, { useContext } from 'react'; | ||
2 | +import { useLocation } from 'react-router'; | ||
3 | +import { Main } from '../components/common/Main'; | ||
4 | +import { RoomInfo } from '../components/room/RoomInfo'; | ||
5 | +import SocketContext from '../contexts/SocketContext'; | ||
6 | + | ||
7 | +export const Room: React.FC = () => { | ||
8 | + return ( | ||
9 | + <Main> | ||
10 | + </Main> | ||
11 | + ); | ||
12 | +} | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
-
Please register or login to post a comment