FrontendDeveloper.in

React question detail

What is dynamic import?

You can achieve code-splitting in your app using dynamic import.

Let's take an example of addition,

  1. Normal Import
import { add } from "./math";
console.log(add(10, 20));
  1. Dynamic Import
import("./math").then((math) => {
console.log(math.add(10, 20));
});
Back to all React questions
Get LinkedIn Premium at Rs 399