UNPKG

@asafarim/simple-md-viewer

Version:

A professional markdown viewer with file tree navigation, directory content browsing, and advanced YAML front matter support

10 lines (9 loc) 272 B
import React from 'react'; import { FileNode } from '../types'; interface FileTreeProps { fileTree: FileNode | null; onFileSelect: (path: string) => void; selectedFile: string | null; } declare const FileTree: React.FC<FileTreeProps>; export default FileTree;