// @ts-nocheck import { DashboardInsider } from '@/components'; import { ImportView } from '@/containers/Import'; import { useHistory } from 'react-router-dom'; export default function CreditNotesImport() { const history = useHistory(); const handleCancelBtnClick = () => { history.push('/credit-notes'); }; const handleImportSuccess = () => { history.push('/credit-notes'); }; return ( ); }