import React, { FC } from 'react'; import { useTranslation } from 'react-i18next'; import { Modal, ModalHeader, ModalBody, ModalFooter, } from 'reactstrap'; type Props = { isOpen: boolean, onClose?: () => void, onExcludeUserPagesSwitched?: () => void, onExcludeTrashPagesSwitched?: () => void, // todo: implement this method // refs: https://redmine.weseek.co.jp/issues/81845 onClickFilteringSearchResultButton?: () => void, } // todo: implement filtering search result // refs: https://redmine.weseek.co.jp/issues/81845 const SearchOptionModal: FC = (props: Props) => { const { t } = useTranslation(''); const onClose = () => { if (props.onClose != null) { props.onClose(); } }; return ( Search Option
); }; export default SearchOptionModal;