When I use typescript and react-loader, the console reported errors like this
This is for a new project test. using react-loadable to achieve dynamic loading
import Loadable from 'react-loadable';
const Home = Loadable({
loader: () => import('../home/home'),
loading: <div></div>,
})
what's wrong with this