FastVLMBoxes / src /App.tsx
Quazim0t0's picture
Upload 36 files
c3a7d92 verified
raw
history blame
367 Bytes
import MultiSourceCaptioningView from "./components/MultiSourceCaptioningView";
export default function App() {
// Remove all webcam gating logic; just render the main view
return (
<div className="App relative h-screen overflow-hidden">
<div className="absolute inset-0 bg-gray-900" />
<MultiSourceCaptioningView />
</div>
);
}