This is my first time using firebase in react and I get the error in a userProvider.js file
auth' is not exported from 'firebase'
while in my firebase.js I do
import "firebase/auth";
export const auth = firebase.auth();
and in my userProvider.js file I import it as
import {auth} from 'firebase';
I'm a complete beginner in this . I don't know if I'm missing something easy here