Changed too much shit I dont care

This commit is contained in:
2023-06-06 13:25:16 +02:00
parent e0bc92ab44
commit bc6c620736
40 changed files with 1035 additions and 123 deletions
+12
View File
@@ -0,0 +1,12 @@
import styles from "./sidebar.module.css"
import { ReactNode } from "react"
interface Props{
children:ReactNode;
}
export default function Sidebar(props:Props) {
return <div className={`${styles.sidebar}`}>
{props.children}
</div>
}