feat: add react routing

This commit is contained in:
2025-07-07 20:15:14 +00:00
parent a4e6fa1125
commit 32b95bf21b
11 changed files with 246 additions and 64 deletions

9
src/app/store.ts Normal file
View File

@@ -0,0 +1,9 @@
import { configureStore } from '@reduxjs/toolkit';
export const store = configureStore({
reducer: {
},
});
export type RootState = ReturnType<typeof store.getState>;
export type AppDispatch = typeof store.dispatch;