mirror of
https://github.com/YMFE/yapi.git
synced 2025-01-06 12:45:22 +08:00
18 lines
292 B
JavaScript
18 lines
292 B
JavaScript
import React, { Component } from 'react'
|
|
|
|
class Setting extends Component {
|
|
render () {
|
|
return (
|
|
<div>
|
|
<div className="g-row">
|
|
<section className="news-box">
|
|
t额st
|
|
</section>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
}
|
|
|
|
export default Setting
|