Hiyve Components - v1.0.0
    Preparing search index...

    Variable defaultNoteEditorLabelsConst

    defaultNoteEditorLabels: NoteEditorLabels = ...

    Default English labels for the NoteEditor component.

    Use this as a reference when creating localized label objects. All labels can be partially overridden using the labels prop.

    import { defaultNoteEditorLabels } from '@hiyve/react-notes';

    // Create Japanese labels
    const japaneseLabels = {
    ...defaultNoteEditorLabels,
    title: 'Notes',
    placeholder: 'Enter your notes...',
    saving: 'Saving...',
    };