import classNames from 'classnames'; type ChapterDividerProps = { title?: string; className?: string; }; export const ChapterDivider = ({ title, className }: ChapterDividerProps) => { return (
{title}
); };