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