This commit is contained in:
Janis
2022-12-18 16:56:58 +01:00
parent 67e6f292ed
commit bb49f58ace
24 changed files with 5519 additions and 5685 deletions

View 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 }: { children: React.ReactNode }) {
return (
<div className={styles.tutorial}>
<ContentTable />
<div className="tutorialContent">{children}</div>
<Sidebar />
</div>
);
}