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-08 06:18:14 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
34875eeb288d4a258832bef7b133d0a879067332
34875eeb
1 parent
7f3f404c
Builds for 1 pipeline
failed
in 1 minute 22 seconds
Room 컴포넌트에 Canvas 컴포넌트 추가
Changes
1
Builds
3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletions
web/src/pages/Room.tsx
web/src/pages/Room.tsx
View file @
34875ee
import React, { useContext } from 'react';
import { useLocation } from 'react-router';
import { Main } from '../components/common/Main';
import { Canvas } from '../components/room/Canvas';
import { Chat } from '../components/room/Chat';
import { RoomInfo } from '../components/room/RoomInfo';
import SocketContext from '../contexts/SocketContext';
...
...
@@ -9,7 +10,8 @@ export const Room: React.FC = () => {
return (
<Main>
<RoomInfo />
<div className='w-full'>
<div className='w-full flex'>
<Canvas />
<Chat />
</div>
</Main>
...
...
Please
register
or
login
to post a comment