chore: 初始化仓库基线(AGENTS.md、git 规范、敏感文件排除)

This commit is contained in:
weijuesen
2026-08-10 22:30:53 +08:00
commit 84abf4454c
358 changed files with 75993 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
import React, { useEffect } from 'react';
import { useDidShow, useDidHide } from '@tarojs/taro';
import { useStore } from '@/store/useStore';
import './app.scss';
function App(props) {
const restoreSession = useStore((s) => s.restoreSession);
useEffect(() => {
restoreSession();
}, [restoreSession]);
useDidShow(() => {});
useDidHide(() => {});
return props.children;
}
export default App;