В моем приложении Reaction-Redux я хочу войти через firebase. Я попытался с кодом, показанным ниже, но эта ошибка появляется "firebase.auth не является функцией"
import React, {useRef} from 'react';
import { getFirebase } from 'react-redux-firebase';
const Auth = () => {
const emailRef = useRef('')
const passwordRef = useRef('')
const handleSubmit = e => {
e.preventDefault()
const firebase = getFirebase();
firebase.login({
email : emailRef.current.value,
password : passwordRef.current.value
}).then(res => console.log('se autentifico correctamente')).catch(error => console.log(error))
}
Я пробовал это и показываю мне точно такую же ошибку
import React, {useRef} from 'react';
import { getFirebase } from 'react-redux-firebase';
const Auth = () => {
const emailRef = useRef('')
const passwordRef = useRef('')
const handleSubmit = e => {
e.preventDefault()
const firebase = getFirebase();
firebase.auth().createUserWithEmailAndPassword(emailRef.current.value, passwordRef.current.value)
.catch(error => console.log(error))
}
Я m just learning to use firebase and firestore, I
м заблокирован в этой точке, я не знаю, как войти в систему с помощью firebase
Я пытался использовать 'firebaseConnect', но теперь устарел