| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- import React from 'react'
- import { PageContainer } from '@ant-design/pro-layout'
- import { Card, Alert, Typography } from 'antd'
- import styles from './Welcome.less'
- const CodePreview = ({ children }) => (
- <pre className={styles.pre}>
- <code>
- <Typography.Text copyable>{children}</Typography.Text>
- </code>
- </pre>
- )
- export default () => (
- <PageContainer>
- <Card>
- <Alert
- message="更快更强的重型组件,已经发布。"
- type="success"
- showIcon
- banner
- style={{
- margin: -12,
- marginBottom: 24
- }}
- />
- <Typography.Text strong>
- 高级表格{' '}
- <a
- href="https://procomponents.ant.design/components/table"
- rel="noopener noreferrer"
- target="__blank"
- >
- 欢迎使用
- </a>
- </Typography.Text>
- <CodePreview>yarn add @ant-design/pro-table</CodePreview>
- <Typography.Text
- strong
- style={{
- marginBottom: 12
- }}
- >
- 高级布局{' '}
- <a
- href="https://procomponents.ant.design/components/layout"
- rel="noopener noreferrer"
- target="__blank"
- >
- 欢迎使用
- </a>
- </Typography.Text>
- <CodePreview>yarn add @ant-design/pro-layout</CodePreview>
- </Card>
- </PageContainer>
- )
|