mirror of
https://github.com/YMFE/yapi.git
synced 2025-01-12 12:54:48 +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
|