forked from Gitlink/forgeplus-react
26 lines
685 B
JavaScript
26 lines
685 B
JavaScript
import React from 'react';
|
|
import { Box , Long , Short , Gap } from '../Component/layout';
|
|
import Title from '../Component/Title';
|
|
import Setnav from '../Component/Setnav';
|
|
|
|
export default (()=>{
|
|
const array = {list:[
|
|
{name:'基本设置',icon:"icon-base",href:""},
|
|
{name:'组织成员',icon:"icon-zuzhichengyuan",href:""},
|
|
{name:'组织团队',icon:"icon-zuzhixiangmu",href:""},
|
|
{name:'管理web钩子',icon:"icon-zhongqingdianxinicon10",href:""}
|
|
],
|
|
active:0
|
|
}
|
|
return(
|
|
<Box>
|
|
<Short>
|
|
<Setnav header={<Title>组织设置</Title>} nav={array}></Setnav>
|
|
</Short>
|
|
<Long>
|
|
<Gap>
|
|
</Gap>
|
|
</Long>
|
|
</Box>
|
|
)
|
|
}) |