forked from Gitlink/forgeplus-react
14 lines
420 B
JavaScript
14 lines
420 B
JavaScript
import React from 'react';
|
|
import { WhiteBack , Banner } from '../../Component/layout';
|
|
import GroupItems from '../TeamGroupItems';
|
|
|
|
const limit = 8;
|
|
function TeamSettingGroup({organizeDetail,history}){
|
|
return(
|
|
<WhiteBack>
|
|
<Banner>组织团队管理</Banner>
|
|
<GroupItems limit={limit} organizeDetail={organizeDetail} count={4} history={history}/>
|
|
</WhiteBack>
|
|
)
|
|
}
|
|
export default TeamSettingGroup; |