| 1234567891011121314151617 |
- import { PropsWithChildren } from 'react'
- import { useLaunch } from '@tarojs/taro'
- import './app.css'
- function App({ children }: PropsWithChildren<any>) {
- useLaunch(() => {
- console.log('App launched.')
- })
- // children 是将要会渲染的页面
- return children
- }
-
- export default App
|