12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- import React from 'react';
- import { HeartTwoTone, SmileTwoTone } from '@ant-design/icons';
- import { Card, Typography, Alert } from 'antd';
- import { PageContainer } from '@ant-design/pro-components';
- export default (): React.ReactNode => {
- return (
- <PageContainer content={' 这个页面只有 admin 权限才能查看'}>
- <Card>
- <Alert
- message={'更快更强的重型组件,已经发布。'}
- type="success"
- showIcon
- banner
- style={{
- margin: -12,
- marginBottom: 48,
- }}
- />
- <Typography.Title
- level={2}
- style={{
- textAlign: 'center',
- }}
- >
- <SmileTwoTone /> 舜德数据 <HeartTwoTone twoToneColor="#eb2f96" /> You
- </Typography.Title>
- </Card>
- <p
- style={{
- textAlign: 'center',
- marginTop: 24,
- }}
- >
- Want to add more pages? Please refer to{' '}
- <a href="https://pro.ant.design/docs/block-cn" target="_blank" rel="noopener noreferrer">
- use block
- </a>
- 。
- </p>
- </PageContainer>
- );
- };
|