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