feat: Add component strucutre for calls and super basic livekit implementation

This commit is contained in:
Alois 2026-04-07 01:40:53 +02:00
commit b7266da61f
20 changed files with 284 additions and 45 deletions

View file

@ -0,0 +1,7 @@
import { useCall } from "../context";
export default function SidebarBox() {
const { state } = useCall();
return state === "closed" ? null : <div>Sidebar</div>;
}