yapi/client/containers/Interface/InterfaceList/InterfaceList.js
2017-07-11 19:13:12 +08:00

18 lines
330 B
JavaScript

import React, { Component } from 'react'
class InterfaceList extends Component {
constructor(props) {
super(props)
}
render () {
return (
<ul className="interface-list">
<li className="active">添加接口</li>
<li>管理项目成员</li>
</ul>
)
}
}
export default InterfaceList