From 93fc7569368e6ba48d31bd7a030ca63e9669b430 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Tue, 30 Jul 2024 14:30:18 +0200 Subject: [PATCH] Create Offline component --- .../pages/Info/components/Offline/Offline.jsx | 14 ++++++++++++++ .../pages/Info/components/Offline/index.js | 1 + 2 files changed, 15 insertions(+) create mode 100644 dashboard/src/states/Dashboard/pages/Info/components/Offline/Offline.jsx create mode 100644 dashboard/src/states/Dashboard/pages/Info/components/Offline/index.js diff --git a/dashboard/src/states/Dashboard/pages/Info/components/Offline/Offline.jsx b/dashboard/src/states/Dashboard/pages/Info/components/Offline/Offline.jsx new file mode 100644 index 0000000..199876a --- /dev/null +++ b/dashboard/src/states/Dashboard/pages/Info/components/Offline/Offline.jsx @@ -0,0 +1,14 @@ +import {Stack} from "@mui/material"; +import OfflineRenewalDays from "./components/OfflineRenewalDays"; +import Download from "./components/Download"; + +export const Offline = () => { + return ( + <> + + + + + + ); +} \ No newline at end of file diff --git a/dashboard/src/states/Dashboard/pages/Info/components/Offline/index.js b/dashboard/src/states/Dashboard/pages/Info/components/Offline/index.js new file mode 100644 index 0000000..19ce984 --- /dev/null +++ b/dashboard/src/states/Dashboard/pages/Info/components/Offline/index.js @@ -0,0 +1 @@ +export {Offline as default} from "./Offline.jsx"; \ No newline at end of file