You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			11 lines
		
	
	
		
			429 B
		
	
	
	
		
			TypeScript
		
	
			
		
		
	
	
			11 lines
		
	
	
		
			429 B
		
	
	
	
		
			TypeScript
		
	
| import { configureStore } from '@reduxjs/toolkit';
 | |
| import modalsReducer from './ducks/modals';
 | |
| import registrationReducer from './ducks/registration';
 | |
| 
 | |
| export const onboardingStore = configureStore({
 | |
|   reducer: { modals: modalsReducer, registration: registrationReducer },
 | |
| });
 | |
| 
 | |
| export type OnboardingStoreState = ReturnType<typeof onboardingStore.getState>;
 | |
| export type OnboardingStoreDispatch = typeof onboardingStore.dispatch;
 |