refactor: move properties to dedicated folder

This commit is contained in:
Maze Winther
2025-07-10 21:24:47 +02:00
parent 98d536a474
commit 0acead5bb1
5 changed files with 142 additions and 115 deletions

View File

@ -0,0 +1,5 @@
import { MediaElement } from "@/types/timeline";
export function MediaProperties({ element }: { element: MediaElement }) {
return <div className="space-y-4 p-5">Media properties</div>;
}