Its proposal is in stage 3. The import() function-like form takes the module name as an argument and returns a Promise which always resolves to the namespace object of the module. Here is an example: moduleA.js const moduleA = 'Hello'; export { moduleA }; App.js import React, { ...