12345678910111213141516171819202122232425262728293031 |
- import { Component } from 'react'
- import { Provider } from 'react-redux'
- import configStore from './store'
- import './app.less'
- const store = configStore()
- class App extends Component {
- componentDidMount () {}
- componentDidShow () {}
- componentDidHide () {}
- componentDidCatchError () {}
- // 在 App 类中的 render() 函数没有实际作用
- // 请勿修改此函数
- render () {
- return (
- <Provider store={store}>
- {this.props.children}
- </Provider>
- )
- }
- }
- export default App
|