mirror of
https://github.com/DerTyp7/explainegy-nextjs.git
synced 2025-10-29 21:02:13 +01:00
14 lines
363 B
TypeScript
14 lines
363 B
TypeScript
import ContentTable from "./ContentTable";
|
|
import Sidebar from "./Sidebar";
|
|
import styles from "../../../styles/Tutorial.module.scss";
|
|
|
|
export default function Layout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<div className={styles.tutorial}>
|
|
<ContentTable />
|
|
<div className="tutorialContent">{children}</div>
|
|
<Sidebar />
|
|
</div>
|
|
);
|
|
}
|