forgeplus-react/src/forge/Team/Setting/TeamSettingGroup.jsx

14 lines
495 B
React
Raw Normal View History

2021-02-05 16:19:35 +08:00
import React from 'react';
import { WhiteBack , Banner } from '../../Component/layout';
import GroupItems from '../TeamGroupItems';
2020-06-24 10:10:47 +08:00
2021-02-01 15:20:38 +08:00
const limit = 8;
2021-09-03 11:38:22 +08:00
function TeamSettingGroup({organizeDetail,history,current_user}){
2020-06-24 10:10:47 +08:00
return(
2023-06-16 11:39:20 +08:00
<WhiteBack style={{border:"1px solid #eee"}}>
2020-06-24 10:10:47 +08:00
<Banner>组织团队管理</Banner>
2021-09-03 11:38:22 +08:00
<GroupItems limit={limit} organizeDetail={organizeDetail} count={4} history={history} current_user={current_user}/>
2021-02-05 16:19:35 +08:00
</WhiteBack>
2020-06-24 10:10:47 +08:00
)
2021-02-01 15:20:38 +08:00
}
export default TeamSettingGroup;