diff --git a/apps/web/src/components/editor/media-panel.tsx b/apps/web/src/components/editor/media-panel.tsx index dfe0836..64b3f30 100644 --- a/apps/web/src/components/editor/media-panel.tsx +++ b/apps/web/src/components/editor/media-panel.tsx @@ -14,6 +14,12 @@ import { toast } from "sonner"; // You can upload files or drag them from your computer. Dragging from here to the timeline adds them to your video project. export function MediaPanel() { + return ( +
+ {/* Existing content */} +
+ ); +} const { mediaItems, addMediaItem, removeMediaItem } = useMediaStore(); const fileInputRef = useRef(null); const [isProcessing, setIsProcessing] = useState(false);