* Add semi to ESLint rules * Add padded-blocks to ESLint rules * Add comma-dangle to ESLint rules * add config/webpack and storyboard * add streaming/ * yarn test:lint -- --fix
		
			
				
	
	
		
			17 lines
		
	
	
		
			284 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			284 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| export const MODAL_OPEN  = 'MODAL_OPEN';
 | |
| export const MODAL_CLOSE = 'MODAL_CLOSE';
 | |
| 
 | |
| export function openModal(type, props) {
 | |
|   return {
 | |
|     type: MODAL_OPEN,
 | |
|     modalType: type,
 | |
|     modalProps: props,
 | |
|   };
 | |
| };
 | |
| 
 | |
| export function closeModal() {
 | |
|   return {
 | |
|     type: MODAL_CLOSE,
 | |
|   };
 | |
| };
 |