Why delay is invalid and rendered directly without delay
const List = Loadable({
  loader: () => import("../components/list"),
  // loader: () => delayRequest(400000).then(() => import("../components/list")),
  loading: Loading,
  delay: 40000,
  timeout: 10000
})