Use LayoutType from is_mobile in actions/app (#24863)
This commit is contained in:
		
							parent
							
								
									7c1305b3a4
								
							
						
					
					
						commit
						5bc8e2d1fd
					
				
					 1 changed files with 2 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -1,10 +1,11 @@
 | 
			
		|||
import { createAction } from '@reduxjs/toolkit';
 | 
			
		||||
import type { LayoutType } from '../is_mobile';
 | 
			
		||||
 | 
			
		||||
export const focusApp = createAction('APP_FOCUS');
 | 
			
		||||
export const unfocusApp = createAction('APP_UNFOCUS');
 | 
			
		||||
 | 
			
		||||
type ChangeLayoutPayload = {
 | 
			
		||||
  layout: 'mobile' | 'single-column' | 'multi-column';
 | 
			
		||||
  layout: LayoutType;
 | 
			
		||||
};
 | 
			
		||||
export const changeLayout =
 | 
			
		||||
  createAction<ChangeLayoutPayload>('APP_LAYOUT_CHANGE');
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue