mirror of
https://github.com/DerTyp7/explainegy-nextjs.git
synced 2025-10-29 21:02:13 +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>
|
|
);
|
|
}
|