blob: 297557a31643d4f24c348379be13f3b661c7dbf3 (
plain)
1
2
3
4
5
6
7
8
9
|
import type { JSX } from "solid-js";
interface SidebarProps {
children: JSX.Element;
}
export default function Sidebar(props: SidebarProps) {
return <aside class="sidebar">{props.children}</aside>;
}
|