What does it mean when you import a string in react? For example import 'firebase/auth'; does this become a variable that I can use? How is this different from something like import firebase from 'firebase/app';
Importing a string with the relative path to a file only imports the module for it's side effects without importing any of it's actual values.