14 lines
305 B
TypeScript
14 lines
305 B
TypeScript
// Store configuration
|
|
export { store, type AppDispatch, type RootState } from "./store";
|
|
|
|
// Redux Provider
|
|
export { ReduxProvider } from "./provider";
|
|
|
|
// Typed hooks
|
|
export { useAppDispatch, useAppSelector } from "./hooks";
|
|
|
|
// App state slice
|
|
export * from "./slices";
|
|
|
|
// APIs
|
|
export * from "./apis"; |