как добавить пользователей в firestore, используя тот же идентификатор после аутентификации
# #javascript #react-native #firebase-authentication Вопрос: const handleSignup = ()=>{ auth() .createUserWithEmailAndPassword(email, password) .then((cred) => { console.log(cred); firestore() .collection('users') .doc(cred.uid) .set({ display_name:username }) .then(() => { console.log('User added!'); }); }) .catch(error…