File tree Expand file tree Collapse file tree 1 file changed +18
-16
lines changed
app/src/components/bottom Expand file tree Collapse file tree 1 file changed +18
-16
lines changed Original file line number Diff line number Diff line change @@ -108,22 +108,24 @@ const Chatroom = (props): JSX.Element => {
108
108
{ renderMessages ( ) }
109
109
</ div >
110
110
</ div >
111
- < form
112
- id = "send-container"
113
- style = { inputContainerStyles }
114
- onSubmit = { handleSubmit }
115
- >
116
- < input
117
- type = "text"
118
- id = "message-input"
119
- onChange = { ( e ) => setInputContent ( e . target . value ) }
120
- value = { inputContent }
121
- style = { inputStyles }
122
- />
123
- < button type = "submit" id = "send-button" style = { buttonStyles } >
124
- Send
125
- </ button >
126
- </ form >
111
+ < div className = "chatroom-input" >
112
+ < form
113
+ id = "send-container"
114
+ style = { inputContainerStyles }
115
+ onSubmit = { handleSubmit }
116
+ >
117
+ < input
118
+ type = "text"
119
+ id = "message-input"
120
+ onChange = { ( e ) => setInputContent ( e . target . value ) }
121
+ value = { inputContent }
122
+ style = { inputStyles }
123
+ />
124
+ < button type = "submit" id = "send-button" style = { buttonStyles } >
125
+ Send
126
+ </ button >
127
+ </ form >
128
+ </ div >
127
129
</ div >
128
130
) ;
129
131
} ;
You can’t perform that action at this time.
0 commit comments