Create Settings component

This commit is contained in:
Mathias Wagner
2024-07-20 13:14:40 +02:00
parent b768eb784f
commit b67dbb8704
2 changed files with 17 additions and 0 deletions

View File

@ -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 (
<Stack gap={1} mt={2} mb={2} direction="row" alignItems="flex-start" sx={{flexWrap: {xs: 'wrap', lg: 'nowrap'}}}>
<Key />
<Name />
<Delete />
</Stack>
)
}

View File

@ -0,0 +1 @@
export {Settings as default} from "./Settings.jsx";