├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── public ├── index.html └── manifest.json ├── src ├── App │ ├── components │ │ ├── Chime.js │ │ ├── Gif.js │ │ ├── Guest.js │ │ ├── Host.js │ │ ├── LastData.js │ │ ├── P2P.js │ │ ├── QR.js │ │ ├── QR.test.js │ │ └── TextBox.js │ └── index.js ├── assets │ └── chime.mp3 ├── index.css ├── index.js └── serviceWorker.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquiGorka/webrtc-qr/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquiGorka/webrtc-qr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquiGorka/webrtc-qr/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquiGorka/webrtc-qr/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquiGorka/webrtc-qr/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquiGorka/webrtc-qr/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/App/components/Chime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquiGorka/webrtc-qr/HEAD/src/App/components/Chime.js -------------------------------------------------------------------------------- /src/App/components/Gif.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquiGorka/webrtc-qr/HEAD/src/App/components/Gif.js -------------------------------------------------------------------------------- /src/App/components/Guest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquiGorka/webrtc-qr/HEAD/src/App/components/Guest.js -------------------------------------------------------------------------------- /src/App/components/Host.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquiGorka/webrtc-qr/HEAD/src/App/components/Host.js -------------------------------------------------------------------------------- /src/App/components/LastData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquiGorka/webrtc-qr/HEAD/src/App/components/LastData.js -------------------------------------------------------------------------------- /src/App/components/P2P.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquiGorka/webrtc-qr/HEAD/src/App/components/P2P.js -------------------------------------------------------------------------------- /src/App/components/QR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquiGorka/webrtc-qr/HEAD/src/App/components/QR.js -------------------------------------------------------------------------------- /src/App/components/QR.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquiGorka/webrtc-qr/HEAD/src/App/components/QR.test.js -------------------------------------------------------------------------------- /src/App/components/TextBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquiGorka/webrtc-qr/HEAD/src/App/components/TextBox.js -------------------------------------------------------------------------------- /src/App/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquiGorka/webrtc-qr/HEAD/src/App/index.js -------------------------------------------------------------------------------- /src/assets/chime.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquiGorka/webrtc-qr/HEAD/src/assets/chime.mp3 -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquiGorka/webrtc-qr/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquiGorka/webrtc-qr/HEAD/src/index.js -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquiGorka/webrtc-qr/HEAD/src/serviceWorker.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquiGorka/webrtc-qr/HEAD/yarn.lock --------------------------------------------------------------------------------