PermissionsScreen.js 308 B

12345678910
  1. const html = require('yo-yo')
  2. module.exports = (props) => {
  3. return html`
  4. <div>
  5. <h1>Please allow access to your camera</h1>
  6. <span>You have been prompted to allow camera access from this site. In order to take pictures with your camera you must approve this request.</span>
  7. </div>
  8. `
  9. }