added textRoom

This commit is contained in:
SrGooglo 2022-11-22 16:24:10 +00:00
parent 1bbcb6ec59
commit 4d4989c754
2 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,16 @@
import React from "react"
import { LiveChat } from "components"
import "./index.less"
export default (props) => {
const roomId = props.match.params.id
return <div className="textRoom">
Connecting to room {roomId}
<LiveChat
roomId={roomId}
/>
</div>
}

View File

@ -0,0 +1,3 @@
.textRoom {
height: 90vh;
}