How to export imported object in ES6?

后端 未结 5 467
孤城傲影
孤城傲影 2020-12-07 06:55

The use case is simple: I just want to export an object with the name just as it was imported.

for example:

import React from \'react\';
export React         


        
5条回答
  •  长情又很酷
    2020-12-07 07:22

    You should be able to do export {React} and import it via import {React} from ./module

    See https://developer.mozilla.org/en/docs/web/javascript/reference/statements/export for more information.

提交回复
热议问题