feat: initialize taro react typescript miniapp

This commit is contained in:
czz
2026-05-07 14:41:39 +08:00
commit 5a98d4afe7
18 changed files with 17606 additions and 0 deletions

8
src/app.tsx Normal file
View File

@@ -0,0 +1,8 @@
import "./app.scss";
function App(props) {
const { children } = props;
return children ?? null;
}
export default App;