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 ( +
+
+
Testing 2.1.10 (Preprod)
+ icon +
+
+ ) +} + +export default AppInstallation; \ No newline at end of file diff --git a/src/routes/appRoutes.js b/src/routes/appRoutes.js index 0552f75..5f8480c 100644 --- a/src/routes/appRoutes.js +++ b/src/routes/appRoutes.js @@ -7,7 +7,8 @@ import Devices from '../components/Devices'; import { Download } from '@mui/icons-material'; import ExportData from '../components/ExportData'; import Registration from '../components/Registration'; -import { FaUser } from 'react-icons/fa'; +import { FaAndroid, FaPhone, FaUser } from 'react-icons/fa'; +import AppInstallation from '../components/AppInstallation'; const appRoutes = [ { @@ -51,6 +52,15 @@ const appRoutes = [ icon: } }, + { + path: "/appinstallation", + element: , + state: "appinstallation", + sidebarProps: { + displayText: "App Installation", + icon: + } + }, ] export default appRoutes; \ No newline at end of file