app.jsx 522 B

12345678910111213141516171819202122232425262728293031
  1. import { Component } from 'react'
  2. import { Provider } from 'react-redux'
  3. import configStore from './store'
  4. import './app.less'
  5. const store = configStore()
  6. class App extends Component {
  7. componentDidMount () {}
  8. componentDidShow () {}
  9. componentDidHide () {}
  10. componentDidCatchError () {}
  11. // 在 App 类中的 render() 函数没有实际作用
  12. // 请勿修改此函数
  13. render () {
  14. return (
  15. <Provider store={store}>
  16. {this.props.children}
  17. </Provider>
  18. )
  19. }
  20. }
  21. export default App