UNPKG

@hirebus/academy

Version:

React component library for academy and learning platforms

11 lines (10 loc) 296 B
export type Chapter = { id: string; title: string; timestamp: number; keywords?: string[]; }; export interface ChaptersContentProps { chapters?: Chapter[]; } export declare function ChaptersContent({ chapters }: ChaptersContentProps): import("react/jsx-runtime").JSX.Element;