Sign in

canrd-main / canrd-erp-front · Files

GitLab

  • Go to group
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • canrd-erp-front
  • src
  • components
  • Guide
  • Guide.tsx
  • chore(master): init
    ec6a6a85
    calmound authored
    2023-10-26 18:00:13 +0800  
    Browse Code »
Guide.tsx 417 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
import { Layout, Row, Typography } from 'antd';
import React from 'react';
import styles from './Guide.less';

interface Props {
  name: string;
}

// 脚手架示例组件
const Guide: React.FC<Props> = () => {
  return (
    <Layout>
      <Row>
        <Typography.Title level={3} className={styles.title}>
          欢迎 !
        </Typography.Title>
      </Row>
    </Layout>
  );
};

export default Guide;