import * as React from "react";
import { Trans, useTranslation } from "react-i18next";
import { FileOperationFormat } from "@shared/types";
import useStores from "~/hooks/useStores";
import DropToImport from "./DropToImport";
import HelpDisclosure from "./HelpDisclosure";
function ImportNotionDialog() {
const { t } = useTranslation();
const { dialogs } = useStores();
return (
<>
Where do I find the file?}>
,
}}
/>
<>
{t(
`Drag and drop the zip file from Notion's HTML export option, or click to upload`
)}
>
>
);
}
export default ImportNotionDialog;