@yamlresume/playground
    Preparing search index...

    Interface EditorPanelProps

    Props for the EditorPanel component.

    interface EditorPanelProps {
        filename?: string;
        onChange: (value: string) => void;
        value: string;
    }
    Index

    Properties

    filename?: string

    The name of the file being edited.

    onChange: (value: string) => void

    Callback triggered when the content changes.

    value: string

    The current YAML content of the editor.