Initial commit

This commit is contained in:
kevisual
2026-02-21 00:23:24 +08:00
commit 83a34b07cf
50 changed files with 3522 additions and 0 deletions

8
src/pages/demo/page.tsx Normal file
View File

@@ -0,0 +1,8 @@
import { useDemoStore } from './store/index'
export const App = () => {
const demoStore = useDemoStore()
console.log('demo', demoStore.formData)
return <div>App</div>
}
export default App;