mirror of
https://github.com/gnmyt/LicenseAPI.git
synced 2026-01-10 10:11:47 +00:00
Create Settings component
This commit is contained in:
@ -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>
|
||||
)
|
||||
}
|
||||
@ -0,0 +1 @@
|
||||
export {Settings as default} from "./Settings.jsx";
|
||||
Reference in New Issue
Block a user