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.
		
		
		
		
		
			
		
			
				
	
	
		
			23 lines
		
	
	
		
			577 B
		
	
	
	
		
			TypeScript
		
	
			
		
		
	
	
			23 lines
		
	
	
		
			577 B
		
	
	
	
		
			TypeScript
		
	
| import { bindActionCreators, Dispatch } from 'redux';
 | |
| 
 | |
| import { actions as search } from './ducks/search';
 | |
| import { actions as conversations } from './ducks/conversations';
 | |
| import { actions as user } from './ducks/user';
 | |
| import { actions as sections } from './ducks/section';
 | |
| import { actions as theme } from './ducks/theme';
 | |
| 
 | |
| export function mapDispatchToProps(dispatch: Dispatch): Object {
 | |
|   return {
 | |
|     ...bindActionCreators(
 | |
|       {
 | |
|         ...search,
 | |
|         ...conversations,
 | |
|         ...user,
 | |
|         ...theme,
 | |
|         ...sections,
 | |
|       },
 | |
|       dispatch
 | |
|     ),
 | |
|   };
 | |
| }
 |