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
3
packages/call/src/components/modals/big/user.tsx
Normal file
3
packages/call/src/components/modals/big/user.tsx
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
export default function BigUser() {
|
||||
return <div>Big User</div>;
|
||||
}
|
||||
3
packages/call/src/components/modals/big/video.tsx
Normal file
3
packages/call/src/components/modals/big/video.tsx
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
export default function BigVideo() {
|
||||
return <div>Big Video</div>;
|
||||
}
|
||||
3
packages/call/src/components/modals/small/user.tsx
Normal file
3
packages/call/src/components/modals/small/user.tsx
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
export default function SmallUser() {
|
||||
return <div>Small User</div>;
|
||||
}
|
||||
3
packages/call/src/components/modals/small/video.tsx
Normal file
3
packages/call/src/components/modals/small/video.tsx
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
export default function SmallVideo() {
|
||||
return <div>Small Video</div>;
|
||||
}
|
||||
Loading…
Reference in a new issue