feat: 添加.autoBeeAdminSystem

This commit is contained in:
ltProj
2025-10-11 11:15:00 +08:00
parent 8632f294bf
commit 2f6a29da96
33 changed files with 861 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
import { Layout, Row, Typography } from 'antd';
import React from 'react';
import styles from './Guide.less';
interface Props {
name: string;
}
// 脚手架示例组件
const Guide: React.FC<Props> = (props) => {
const { name } = props;
return (
<Layout>
<Row>
<Typography.Title level={3} className={styles.title}>
使 <strong>{name}</strong>
</Typography.Title>
</Row>
</Layout>
);
};
export default Guide;