client/apps/web/src/components/callSidebarBox.tsx
Alois e0c2331af3
Some checks failed
/ build-web (push) Successful in 4m52s
/ build-mobile (push) Failing after 8m36s
/ build-desktop (linux) (push) Successful in 7m46s
/ release (push) Has been skipped
perf(react): remove lazy imports again
2026-08-31 23:09:02 +02:00

8 lines
251 B
TypeScript

import { useCall } from "@tensamin/call/state";
import SidebarBox from "@tensamin/call/sidebarBox";
export default function CallSidebarBox() {
const active = useCall((state) => state.state !== "closed");
return active ? <SidebarBox /> : null;
}