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