feat: Add component strucutre for calls and super basic livekit implementation
This commit is contained in:
parent
cdb0fdbf76
commit
b7266da61f
20 changed files with 284 additions and 45 deletions
7
packages/call/src/views/preview.tsx
Normal file
7
packages/call/src/views/preview.tsx
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
import { useCall } from "../context";
|
||||
|
||||
export default function Preview() {
|
||||
const { currentCallData } = useCall();
|
||||
|
||||
return <div>Preview View {currentCallData?.someInfo}</div>;
|
||||
}
|
||||
Loading…
Reference in a new issue