'use client'; import { FC, useCallback } from 'react'; export const Bullets: FC<{ editor: any; currentValue: string; }> = ({ editor }) => { const bullet = () => { editor.commands.toggleBulletList(); }; return (
A
); };