2
0

app.ts 302 B

1234567891011121314151617
  1. import { PropsWithChildren } from 'react'
  2. import { useLaunch } from '@tarojs/taro'
  3. import './app.css'
  4. function App({ children }: PropsWithChildren<any>) {
  5. useLaunch(() => {
  6. console.log('App launched.')
  7. })
  8. // children 是将要会渲染的页面
  9. return children
  10. }
  11. export default App