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,
- Normal Import
import { add } from "./math";
console.log(add(10, 20));
- Dynamic Import
import("./math").then((math) => {
console.log(math.add(10, 20));
});