mirror of
https://github.com/YMFE/yapi.git
synced 2024-12-21 05:19:42 +08:00
13 lines
220 B
JavaScript
13 lines
220 B
JavaScript
import React, { Component } from 'react'
|
|
import Routes from './routes'
|
|
import './styles/lx.scss'
|
|
// import './styles/index.css'
|
|
|
|
class App extends Component {
|
|
render() {
|
|
return <Routes />
|
|
}
|
|
}
|
|
|
|
export default App
|