From 6fbcbb9399db56e560e761eb3f328344d3ae965f Mon Sep 17 00:00:00 2001 From: Enrico Ros Date: Tue, 11 Jun 2024 15:11:22 -0700 Subject: [PATCH] Draw: renames --- src/apps/draw/AppDraw.tsx | 5 +++-- src/apps/draw/{create => }/useDrawSectionDropdown.tsx | 0 2 files changed, 3 insertions(+), 2 deletions(-) rename src/apps/draw/{create => }/useDrawSectionDropdown.tsx (100%) diff --git a/src/apps/draw/AppDraw.tsx b/src/apps/draw/AppDraw.tsx index eb0ee7d95..0db103b0b 100644 --- a/src/apps/draw/AppDraw.tsx +++ b/src/apps/draw/AppDraw.tsx @@ -2,9 +2,10 @@ import * as React from 'react'; import { useIsMobile } from '~/common/components/useMatchMedia'; import { usePluggableOptimaLayout } from '~/common/layout/optima/useOptimaLayout'; -import { useDrawSectionDropdown } from './create/useDrawSectionDropdown'; -import { DrawGallery } from './DrawGallery'; + import { DrawCreate } from './DrawCreate'; +import { DrawGallery } from './DrawGallery'; +import { useDrawSectionDropdown } from './useDrawSectionDropdown'; // export interface AppDrawIntent { diff --git a/src/apps/draw/create/useDrawSectionDropdown.tsx b/src/apps/draw/useDrawSectionDropdown.tsx similarity index 100% rename from src/apps/draw/create/useDrawSectionDropdown.tsx rename to src/apps/draw/useDrawSectionDropdown.tsx