mirror of
https://github.com/YMFE/yapi.git
synced 2024-12-27 05:30:14 +08:00
18 lines
330 B
JavaScript
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 |