1.

How to import components in React Native?

Answer»
  • Add this CODE in the component.js file destination file
    IMPORT Title from './src/components/importcomponentdemo';
  • Here’s the complete code:
    import REACT from 'react';
    import { APPREGISTRY } from 'react-native';
    import App from './src/components/importcomponentdemo';
    const App = () => (
       <Title />
    );
    AppRegistry.registerComponent('ComponentDemo', () => App);


Discussion

No Comment Found