import './sidebar.css' import { Button, NavLink } from 'react-bootstrap'; import React, { ReactNode, useState } from 'react'; import Link from 'next/link'; import { headers } from 'next/headers'; export type SidebarEntry = { label:string; view:string; } type Props = { children?:ReactNode; sidebarEntries:Array; slug:string } export default async function Sidebar({children, sidebarEntries, slug}:Props){ return (
); }