feat(小程序): 修复运行时与登录链路

This commit is contained in:
stu2not
2026-04-22 17:25:03 +08:00
parent 24b1d1025b
commit d7df6f565c
12 changed files with 297 additions and 426 deletions

View File

@@ -1,12 +1,8 @@
import { useLaunch } from '@tarojs/taro'
import './app.scss'
import { PropsWithChildren } from 'react'
function App(props) {
useLaunch(() => {
console.log('App launched.')
})
function App(props: PropsWithChildren) {
return props.children
}
export default App
export default App