mirror of
https://github.com/gnmyt/LicenseAPI.git
synced 2026-01-11 02:31:46 +00:00
Create Defaults component
This commit is contained in:
@ -0,0 +1,14 @@
|
|||||||
|
import LicenseKey from "./components/LicenseKey";
|
||||||
|
import Groups from "./components/Groups";
|
||||||
|
import Permissions from "./components/Permissions";
|
||||||
|
import {Stack} from "@mui/material";
|
||||||
|
|
||||||
|
export const Defaults = () => {
|
||||||
|
return (
|
||||||
|
<Stack gap={1} mt={2} mb={2} direction="column" alignItems="flex-start">
|
||||||
|
<LicenseKey />
|
||||||
|
<Groups />
|
||||||
|
<Permissions />
|
||||||
|
</Stack>
|
||||||
|
)
|
||||||
|
}
|
||||||
@ -0,0 +1 @@
|
|||||||
|
export {Defaults as default} from "./Defaults.jsx";
|
||||||
Reference in New Issue
Block a user