import type { ChapterFileType } from '../../lib/course'; import { Chapter } from './Chapter'; export type CourseSidebarProps = { title: string; chapters: ChapterFileType[]; completedPercentage: number; }; export function CourseSidebar(props: CourseSidebarProps) { const { title, chapters, completedPercentage } = props; return ( ); }