How to import and export components using React and ES6?

How to import and export components using React and ES6?

it_expert


You should use default for exporting the components

With the export specifier, the MyProfile is going to be the member and exported to this module and the same can be imported without mentioning the name in other components.

Report Page