Buer 48989d4a0b
feat: add new theme berry (#860)
* feat: add theme berry

* docs: add development notes

* fix: fix blank page

* chore: update implementation

* fix: fix package.json

* chore: update ui copy

---------

Co-authored-by: JustSong <songquanpeng@foxmail.com>
2024-01-07 14:20:07 +08:00

27 lines
759 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Stack, Alert } from '@mui/material';
import Grid from '@mui/material/Unstable_Grid2';
import TopupCard from './component/TopupCard';
import InviteCard from './component/InviteCard';
const Topup = () => {
return (
<Grid container spacing={2}>
<Grid xs={12}>
<Alert severity="warning">
充值记录以及邀请记录请在日志中查询充值记录请在日志中选择类型充值查询邀请记录请在日志中选择系统查询{' '}
</Alert>
</Grid>
<Grid xs={12} md={6} lg={8}>
<Stack spacing={2}>
<TopupCard />
</Stack>
</Grid>
<Grid xs={12} md={6} lg={4}>
<InviteCard />
</Grid>
</Grid>
);
};
export default Topup;