17 lines
606 B
TypeScript
17 lines
606 B
TypeScript
|
|
import ChatNoServerWidget from '@/components/chat/ChatNoServerWidget'
|
||
|
|
import ChatWS from '@/components/chat/ChatWS'
|
||
|
|
import MediaSoupWidget from '@/components/chat/MediaSoupWidget'
|
||
|
|
import WebRTCChatUsingPeer from '@/components/chat/WebRTCChatUsingPeer'
|
||
|
|
import WebRTCChat from '@/components/chat/WebRTCChatUsingPeer'
|
||
|
|
import WebRTComponent from '@/components/chat/WebRTComponent'
|
||
|
|
import React from 'react'
|
||
|
|
|
||
|
|
export default function Tttest() {
|
||
|
|
return (
|
||
|
|
// <div><WebRTCChat /></div>
|
||
|
|
// <div><ChatNoServerWidget /></div>
|
||
|
|
// <div><WebRTCChatUsingPeer /></div>
|
||
|
|
<div><ChatWS /></div>
|
||
|
|
)
|
||
|
|
}
|