dynamic import vs static import for CSS

Viewed 26

Is there any difference between these methods for importing CSS in React.js:

dynamic import:

(async () => {
    await import("./css/responsive.css");
})();

static import:

import "./css/responsive.css"
0 Answers
Related