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