Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
parkpow
GitHub Repository: parkpow/deep-license-plate-recognition
Path: blob/master/docker/dd-extension/ui/src/App.tsx
1091 views
1
import { Container } from "react-bootstrap";
2
3
import Tab from "react-bootstrap/Tab";
4
import Tabs from "react-bootstrap/Tabs";
5
6
import Snapshot from "./components/Snapshot";
7
import Stream from "./components/Stream";
8
9
export function App() {
10
return (
11
<Container>
12
<h2 className="text-center">Plate Recognizer Installer</h2>
13
<Tabs defaultActiveKey="stream" className="mb-3 justify-content-center">
14
<Tab eventKey="stream" title="Stream">
15
<Stream />
16
</Tab>
17
<Tab eventKey="snapshot" title="Snapshot">
18
<Snapshot />
19
</Tab>
20
</Tabs>
21
</Container>
22
);
23
}
24
25