12 lines
188 B
TypeScript
12 lines
188 B
TypeScript
import { useLaunch } from '@tarojs/taro'
|
|
import './app.scss'
|
|
|
|
function App(props) {
|
|
useLaunch(() => {
|
|
console.log('App launched.')
|
|
})
|
|
|
|
return props.children
|
|
}
|
|
|
|
export default App |