(frontend) create feature doc-export

Create the feature doc-export, it will be
responsible for exporting the document.
This commit is contained in:
Anthony LC
2025-02-18 16:40:22 +01:00
committed by Anthony LC
parent 26ea32bd0b
commit 3acee1e6fa
9 changed files with 3 additions and 2 deletions

View File

@@ -0,0 +1 @@
export * from './ModalExport';

View File

@@ -0,0 +1 @@
export * from './components';

View File

@@ -18,6 +18,7 @@ import {
} from '@/components';
import { useCunninghamTheme } from '@/cunningham';
import { useEditorStore } from '@/features/docs/doc-editor/';
import { ModalExport } from '@/features/docs/doc-export/';
import {
Doc,
ModalRemoveDoc,
@@ -30,8 +31,6 @@ import {
} from '@/features/docs/doc-versioning';
import { useResponsiveStore } from '@/stores';
import { ModalExport } from './ModalExport';
interface DocToolBoxProps {
doc: Doc;
}