Toggle navigation
Toggle navigation
This project
Loading...
Sign in
강동현
/
nodejs-game
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Overnap
2021-06-07 05:31:19 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
76f9a06ddb51d06f463a1428408ac470f44270b0
76f9a06d
1 parent
ad013a59
Room 컴포넌트에 Chat 컴포넌트 적용
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
web/src/pages/Room.tsx
web/src/pages/Room.tsx
View file @
76f9a06
import React, { useContext } from 'react';
import { useLocation } from 'react-router';
import { Main } from '../components/common/Main';
import { Chat } from '../components/room/Chat';
import { RoomInfo } from '../components/room/RoomInfo';
import SocketContext from '../contexts/SocketContext';
...
...
@@ -8,6 +9,9 @@ export const Room: React.FC = () => {
return (
<Main>
<RoomInfo />
<div className='w-full'>
<Chat />
</div>
</Main>
);
}
\ No newline at end of file
...
...
Please
register
or
login
to post a comment