Changed too much shit I dont care
This commit is contained in:
@@ -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>
|
||||
}
|
||||
Reference in New Issue
Block a user