From b67dbb870438c70fff47a0be8b9dc880e7dc1f44 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Sat, 20 Jul 2024 13:14:40 +0200 Subject: [PATCH] Create Settings component --- .../pages/Info/components/Settings/Settings.jsx | 16 ++++++++++++++++ .../pages/Info/components/Settings/index.js | 1 + 2 files changed, 17 insertions(+) create mode 100644 dashboard/src/states/Dashboard/pages/Info/components/Settings/Settings.jsx create mode 100644 dashboard/src/states/Dashboard/pages/Info/components/Settings/index.js diff --git a/dashboard/src/states/Dashboard/pages/Info/components/Settings/Settings.jsx b/dashboard/src/states/Dashboard/pages/Info/components/Settings/Settings.jsx new file mode 100644 index 0000000..5ff24b8 --- /dev/null +++ b/dashboard/src/states/Dashboard/pages/Info/components/Settings/Settings.jsx @@ -0,0 +1,16 @@ +import {Stack} from "@mui/material"; +import Key from "@/states/Dashboard/pages/Info/components/Settings/components/Key"; +import Name from "@/states/Dashboard/pages/Info/components/Settings/components/Name"; +import Delete from "@/states/Dashboard/pages/Info/components/Settings/components/Delete"; + +export const Settings = () => { + return ( + + + + + + + + ) +} \ No newline at end of file diff --git a/dashboard/src/states/Dashboard/pages/Info/components/Settings/index.js b/dashboard/src/states/Dashboard/pages/Info/components/Settings/index.js new file mode 100644 index 0000000..b30815e --- /dev/null +++ b/dashboard/src/states/Dashboard/pages/Info/components/Settings/index.js @@ -0,0 +1 @@ +export {Settings as default} from "./Settings.jsx"; \ No newline at end of file