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