mirror of
https://github.com/gnmyt/LicenseAPI.git
synced 2026-01-11 10:41:46 +00:00
14 lines
399 B
JavaScript
14 lines
399 B
JavaScript
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>
|
|
</>
|
|
);
|
|
} |