import React from 'react' import DictionaryModalContent from './dictionary-modal-content' import AccessibleModal from '../../../shared/components/accessible-modal' import withErrorBoundary from '../../../infrastructure/error-boundary' type DictionaryModalProps = { show?: boolean handleHide: () => void } function DictionaryModal({ show, handleHide }: DictionaryModalProps) { return ( ) } export default withErrorBoundary(DictionaryModal)