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