From 5fd6de383d3b6ca443fef5351edade0978bc42d3 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Tue, 1 Aug 2023 22:35:43 +0200 Subject: [PATCH] Created the Settings.jsx component --- .../pages/Info/components/Settings/Settings.jsx | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/states/Dashboard/pages/Info/components/Settings/Settings.jsx diff --git a/src/states/Dashboard/pages/Info/components/Settings/Settings.jsx b/src/states/Dashboard/pages/Info/components/Settings/Settings.jsx new file mode 100644 index 0000000..d6b141e --- /dev/null +++ b/src/states/Dashboard/pages/Info/components/Settings/Settings.jsx @@ -0,0 +1,17 @@ +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