'use client'; import { FC, useCallback } from 'react'; export const HeadingComponent: FC<{ editor: any; currentValue: string; }> = ({ editor }) => { const setHeading = (level: number) => () => { editor?.commands?.unsetUnderline(); editor?.commands?.unsetBold(); editor?.commands?.toggleHeading({ level }); }; return (