yapi/client/containers/Interface/InterfaceList/InterfaceList.js

18 lines
330 B
JavaScript
Raw Normal View History

2017-07-11 19:12:13 +08:00
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