add banbanmini

This commit is contained in:
HycJack
2026-03-24 13:15:03 +08:00
parent 42567b7605
commit 0d0f995dc2
59 changed files with 26319 additions and 0 deletions

12
banban-mini/src/app.tsx Normal file
View File

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