No Description

app.js 321B

123456789101112131415161718192021
  1. import { Component } from 'react'
  2. import './app.scss'
  3. class App extends Component {
  4. componentDidMount () {}
  5. componentDidShow () {}
  6. componentDidHide () {}
  7. componentDidCatchError () {}
  8. // this.props.children 是将要会渲染的页面
  9. render () {
  10. return this.props.children
  11. }
  12. }
  13. export default App