Blame view

src/components/Guide/Guide.tsx 417 Bytes
calmound authored
1
2
3
4
5
6
7
8
9
import { Layout, Row, Typography } from 'antd';
import React from 'react';
import styles from './Guide.less';

interface Props {
  name: string;
}

// 脚手架示例组件
calmound authored
10
const Guide: React.FC<Props> = () => {
calmound authored
11
12
13
14
  return (
    <Layout>
      <Row>
        <Typography.Title level={3} className={styles.title}>
calmound authored
15
          欢迎 !
calmound authored
16
17
18
19
20
21
22
        </Typography.Title>
      </Row>
    </Layout>
  );
};

export default Guide;