You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
361 B

3 years ago
import Webcam from "react-webcam";
import "./app.css";
function App() {
return (
3 years ago
<div className="app">
<Webcam className="webcam" />
<div className="overlay"></div>
<div className="header"></div>
<div className="headtext">Scan the Record QR Code.</div>
<div className="footer"></div>
</div>
);
}
export default App;