mirror of
https://github.com/YMFE/yapi.git
synced 2025-01-24 13:14:16 +08:00
12 lines
204 B
JavaScript
12 lines
204 B
JavaScript
import React, { Component } from 'react'
|
|
|
|
export default class InterfaceColContent extends Component {
|
|
constructor(props) {
|
|
super(props)
|
|
}
|
|
|
|
render() {
|
|
return <h1>hello colContent</h1>
|
|
}
|
|
}
|