File size: 367 Bytes
1a9c884
 
 
ebf09be
1a9c884
 
 
ebf09be
1a9c884
 
 
1
2
3
4
5
6
7
8
9
10
11
12
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>
  );
}