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