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-10 00:22:11 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
2964bc9821da1c5178f11113ce35c07b90fb4716
2964bc98
1 parent
1ead0850
Chat 컴포넌트의 오래된 코드 삭제
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
2 deletions
web/src/components/room/Chat.tsx
web/src/components/room/Chat.tsx
View file @
2964bc9
...
...
@@ -37,8 +37,6 @@ export const Chat: React.FC<ChatProps> = (props) => {
const handleEnter = useCallback((e: React.KeyboardEvent) => {
if (e.key === 'Enter') {
// setChatLines([...chatLines, { sender: 'me', message: input }]);
const rawMessage: RawMessage = {
type: MessageType.ROOM_CHAT,
message: { message: input }
...
...
Please
register
or
login
to post a comment