mirror of
				https://github.com/SoftFever/OrcaSlicer.git
				synced 2025-10-31 04:31:15 -06:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			No EOL
		
	
	
		
			289 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			No EOL
		
	
	
		
			289 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import { useEffect, useLayoutEffect } from 'react';
 | |
| 
 | |
| function useIsomorphicLayoutEffect(callback, deps) {
 | |
|   // eslint-disable-next-line
 | |
|   if (typeof window === 'undefined') return useEffect(callback, deps);
 | |
|   return useLayoutEffect(callback, deps);
 | |
| }
 | |
| 
 | |
| export { useIsomorphicLayoutEffect }; | 
