Code QuizIntermediate

Extension Resolution Order

Find why the web build loads the wrong file.

Codejavascript
// Files present:
//   Storage.native.js  -> uses AsyncStorage
//   Storage.web.js     -> uses localStorage
//
// Developer expects web to load Storage.web.js
import Storage from './Storage.native';

export default Storage;

What is wrong with this import for a web build?