11 lines
		
	
	
	
		
			270 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			270 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { ReactNode, FunctionComponent } from 'react';
 | |
| 
 | |
| type LayoutPropsType = {
 | |
|   children?: ReactNode;
 | |
| };
 | |
| 
 | |
| const Layout: FunctionComponent = ({ children }: LayoutPropsType) => (
 | |
|   <div className="lg:px-32 md:px-16 px-4 py-4">{children}</div>
 | |
| );
 | |
| 
 | |
| export default Layout;
 |