From 56e6edcc5ab497388bcfad78a60681b99ca5c374 Mon Sep 17 00:00:00 2001 From: Maze Winther Date: Thu, 17 Jul 2025 17:37:18 +0200 Subject: [PATCH] move timeline component --- .../editor/{timeline.tsx => timeline/index.tsx} | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) rename apps/web/src/components/editor/{timeline.tsx => timeline/index.tsx} (92%) diff --git a/apps/web/src/components/editor/timeline.tsx b/apps/web/src/components/editor/timeline/index.tsx similarity index 92% rename from apps/web/src/components/editor/timeline.tsx rename to apps/web/src/components/editor/timeline/index.tsx index bfc6512a..6d90670a 100644 --- a/apps/web/src/components/editor/timeline.tsx +++ b/apps/web/src/components/editor/timeline/index.tsx @@ -7,13 +7,13 @@ import { useTimelineZoom } from "@/hooks/use-timeline-zoom"; import { useSelectionBox } from "@/hooks/use-selection-box"; import { SnapPoint } from "@/hooks/use-timeline-snapping"; import { TIMELINE_CONSTANTS } from "@/constants/timeline-constants"; -import { TimelineToolbar } from "./timeline/timeline-toolbar"; -import { TimelineContent } from "./timeline/timeline-content"; -import { useTimelineDragHandlers } from "./timeline/timeline-drag-handlers"; -import { useTimelineActionHandlers } from "./timeline/timeline-action-handlers"; -import { useTimelineScrollSync } from "./timeline/timeline-scroll-sync"; -import { useTimelineContentClick } from "./timeline/timeline-content-click"; -import { useTimelineWheelHandler } from "./timeline/timeline-wheel-handler"; +import { TimelineToolbar } from "./timeline-toolbar"; +import { TimelineContent } from "./timeline-content"; +import { useTimelineDragHandlers } from "./timeline-drag-handlers"; +import { useTimelineActionHandlers } from "./timeline-action-handlers"; +import { useTimelineScrollSync } from "./timeline-scroll-sync"; +import { useTimelineContentClick } from "./timeline-content-click"; +import { useTimelineWheelHandler } from "./timeline-wheel-handler"; export function Timeline() { // Timeline shows all tracks (video, audio, effects) and their elements.