diff --git a/src/assets/testing_2_1_10.png b/src/assets/testing_2_1_10.png new file mode 100644 index 0000000..8c0bbe8 Binary files /dev/null and b/src/assets/testing_2_1_10.png differ diff --git a/src/components/AppInstallation.css b/src/components/AppInstallation.css new file mode 100644 index 0000000..f16db5d --- /dev/null +++ b/src/components/AppInstallation.css @@ -0,0 +1,4 @@ +.app-qrcode { + height: 250px; + width: 250px; +} \ No newline at end of file diff --git a/src/components/AppInstallation.js b/src/components/AppInstallation.js new file mode 100644 index 0000000..b8fb6ca --- /dev/null +++ b/src/components/AppInstallation.js @@ -0,0 +1,23 @@ +import React, { useEffect, useState, useRef } from 'react'; +import { query, collection, onSnapshot } from 'firebase/firestore'; + +import './AppInstallation.css'; +import db from '../firebase'; + +const AppInstallation = () => { + const [alerts, setAlerts] = useState([]); + + useEffect(() => { + }, []); + + return ( +
+