11 lines
		
	
	
		
			318 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			318 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import fetchUserSaga from './fetch-user-saga';
 | 
						|
import loadCurrentChallengeSaga from './load-current-challenge-saga';
 | 
						|
 | 
						|
export { default as reducer } from './reducer';
 | 
						|
export * as actions from './actions';
 | 
						|
export { default as types } from './types';
 | 
						|
export const sagas = [
 | 
						|
  fetchUserSaga,
 | 
						|
  loadCurrentChallengeSaga
 | 
						|
];
 |