react-nativereact-component

How to change default component name while importing in react native?


I want to import a component named "Create" while importing I want to change its name. But I cannot change the component name as I export the "Create" component as default.

import Create as CreateCustomer from 'sales_app/src/screen/customer/Create' ;

I am new to react-native. Need Help.


Solution

  • You can rename default import like this

      import { default as CreateCustomer } from 'sales_app/src/screen/customer/Create';