mirror of
				https://github.com/blakeblackshear/frigate.git
				synced 2025-10-27 10:52:11 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			240 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			240 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { ReactNode } from "react";
 | |
| 
 | |
| type TWrapperProps = {
 | |
|   children: ReactNode;
 | |
| };
 | |
| 
 | |
| const Wrapper = ({ children }: TWrapperProps) => {
 | |
|   return <main className="h-dvh w-full overflow-hidden">{children}</main>;
 | |
| };
 | |
| 
 | |
| export default Wrapper;
 |