import classNames from 'classnames'; type ChapterProps = { children?: React.ReactNode; className?: string; title?: string; }; export const Chapter = ({ children, title }: ChapterProps) => { return (
{title &&
{title}
} {children}
); };