25 lines
709 B
TypeScript
25 lines
709 B
TypeScript
/*
|
|
* File: store.ts
|
|
* Description: Redux store configuration for the Radiologist App
|
|
* Design & Developed by Tech4Biz Solutions
|
|
* Copyright (c) Spurrin Innovations. All rights reserved.
|
|
*/
|
|
|
|
import { configureStore } from '@reduxjs/toolkit';
|
|
import rootReducer from './rootReducer';
|
|
|
|
// Configure the Redux store
|
|
const store = configureStore({
|
|
reducer: rootReducer,
|
|
// You can add middleware, devTools, and other options here if needed
|
|
});
|
|
|
|
// Export store and types for use throughout the app
|
|
export type AppDispatch = typeof store.dispatch;
|
|
export default store;
|
|
|
|
/*
|
|
* End of File: store.ts
|
|
* Design & Developed by Tech4Biz Solutions
|
|
* Copyright (c) Spurrin Innovations. All rights reserved.
|
|
*/
|