| 1234567891011121314151617181920 |
- import { Component } from 'react'
- import './app.less'
- import 'taro-ui/dist/style/index.scss'
- class App extends Component {
- componentDidMount() { }
- componentDidShow() { }
- componentDidHide() { }
- componentDidCatchError() { }
- // this.props.children 是将要会渲染的页面
- render() {
- return this.props.children
- }
- }
- export default App
|