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

    Function NotesSessionViewer

    • Read-only viewer for saved note files.

      Parameters

      Returns Element

      NotesSessionViewer React element

      This component renders a saved note file in read-only mode, suitable for displaying in the FileManager or other contexts where editing is not needed.

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

      function FileViewer({ noteFile }) {
      return (
      <NotesSessionViewer
      note={noteFile}
      maxHeight={400}
      />
      );
      }