forked from tongChong/forgeplus-react
14 lines
486 B
JavaScript
14 lines
486 B
JavaScript
import React from 'react';
|
|
import { Banner } from '../Component/layout';
|
|
import GroupItems from './TeamGroupItems';
|
|
|
|
const limit = 14;
|
|
function TeamGroup({organizeDetail,history,current_user}){
|
|
return(
|
|
<div style={{background:"#fff",marginBottom:"30px",border:'1px solid #eee'}}>
|
|
<Banner>组织团队</Banner>
|
|
<GroupItems limit={limit} organizeDetail={organizeDetail} count={7} history={history} current_user={current_user}/>
|
|
</div>
|
|
)
|
|
}
|
|
export default TeamGroup; |