18 lines
330 B
TypeScript
18 lines
330 B
TypeScript
|
|
import PageContainerPlugin from '@/components/PageContainer/PageContainerPlugin';
|
||
|
|
|
||
|
|
const DepContent = () => {
|
||
|
|
return (
|
||
|
|
<div>
|
||
|
|
<div>Dep</div>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
};
|
||
|
|
|
||
|
|
const Dep = () => (
|
||
|
|
<PageContainerPlugin breadcrumb={['用户管理', '组织架构']}>
|
||
|
|
<DepContent />
|
||
|
|
</PageContainerPlugin>
|
||
|
|
);
|
||
|
|
|
||
|
|
export default Dep;
|