Files
xin-procurement-weapp/src/app.ts
T
2026-08-06 15:24:03 +08:00

21 lines
321 B
TypeScript

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