import * as React from "react";
import { Trans } from "react-i18next";
import { FileOperationFormat } from "@shared/types";
import env from "~/env";
import useStores from "~/hooks/useStores";
import DropToImport from "./DropToImport";
import HelpDisclosure from "./HelpDisclosure";
function ImportMarkdownDialog() {
const { dialogs } = useStores();
const appName = env.APP_NAME;
return (
<>
How does this work?}>
,
}}
/>
Drag and drop the zip file from the Markdown export option in{" "}
{{ appName }}, or click to upload
>
);
}
export default ImportMarkdownDialog;