mirror of
https://github.com/DerTyp7/explainegy-nextjs.git
synced 2026-07-31 15:49:04 +02:00
added richtig viel sachen
This commit is contained in:
13
app/tutorials/[tutorialId]/layout.tsx
Normal file
13
app/tutorials/[tutorialId]/layout.tsx
Normal file
@@ -0,0 +1,13 @@
|
||||
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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user