'use client' import { RefObject } from 'react' interface RichTextToolbarProps { fileInputRef: RefObject uploading: boolean onFormatDoc: (cmd: string, value?: string | null) => void onFormatBlock: (tag: string) => void onInsertLink: () => void onWordUpload: (event: React.ChangeEvent) => void } export default function RichTextToolbar({ fileInputRef, uploading, onFormatDoc, onFormatBlock, onInsertLink, onWordUpload, }: RichTextToolbarProps) { return (
{/* Formatting */}
{/* Headings */}
{/* Lists */}
{/* Links */}
{/* Word Upload */}
) }