Created the Settings.jsx component

This commit is contained in:
Mathias Wagner 2023-08-01 22:35:43 +02:00
parent ec2287a246
commit 5fd6de383d
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

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