app.js 358 B

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