Guide.tsx 478 B

1234567891011121314151617181920212223
  1. import { Layout, Row, Typography } from 'antd';
  2. import React from 'react';
  3. import styles from './Guide.less';
  4. interface Props {
  5. name: string;
  6. }
  7. // 脚手架示例组件
  8. const Guide: React.FC<Props> = (props) => {
  9. const { name } = props;
  10. return (
  11. <Layout>
  12. <Row>
  13. <Typography.Title level={3} className={styles.title}>
  14. 欢迎使用 <strong>{name}</strong> !
  15. </Typography.Title>
  16. </Row>
  17. </Layout>
  18. );
  19. };
  20. export default Guide;