新项目, antd6, react19

This commit is contained in:
zhengw
2026-01-05 17:06:16 +08:00
commit fcb43c0cbd
84 changed files with 6939 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
import PageContainerPlugin from '@/components/PageContainer/PageContainerPlugin';
const DepContent = () => {
return (
<div>
<div>Dep</div>
</div>
);
};
const Dep = () => (
<PageContainerPlugin breadcrumb={['用户管理', '组织架构']}>
<DepContent />
</PageContainerPlugin>
);
export default Dep;