[Solved] React Native Error: Module does not exist in the module map

React Native error Module does not exist in the module map

Code:

import Login from ‘login’

import Index from ‘index’

Solution.

Import your own js must not forget to write ‘. /’, otherwise it will think that the introduction of modules …

Change it to.

import Login from './login'
import Index from './index'

 

Similar Posts: