mirror of
				https://github.com/DerTyp7/explainegy-nextjs.git
				synced 2025-11-04 07:19:00 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			304 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			304 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import ContentTable from "./ContentTable";
 | 
						|
import Sidebar from "./Sidebar";
 | 
						|
import styles from "../../../styles/Tutorial.module.scss";
 | 
						|
 | 
						|
export default function Layout({ children }) {
 | 
						|
	return (
 | 
						|
		<div className={styles.tutorial}>
 | 
						|
			<ContentTable />
 | 
						|
			<div>{children}</div>
 | 
						|
			<Sidebar />
 | 
						|
		</div>
 | 
						|
	);
 | 
						|
}
 |