import React from 'react'; import { Text, Center } from '@mantine/core'; import Editor from './Editor'; import MarkdownPreview from './MarkdownPreview'; import { getFileUrl } from '../../services/api'; import { isImageFile } from '../../utils/fileHelpers'; const ContentView = ({ activeTab, selectedFile, content, handleContentChange, handleSave, handleFileSelect, }) => { if (!selectedFile) { return (