docs(firestore): fix typo (#3189)

Co-authored-by: Russell Wheatley <russellwheatley85@gmail.com>
This commit is contained in:
Thiago Marinho
2020-02-11 05:34:39 -04:00
committed by GitHub
parent 13e9c86c24
commit c721f4b63f

View File

@@ -113,7 +113,7 @@ import firestore from '@react-native-firebase/firestore';
function Users() {
const [users, setUsers] = useState([]); // Initial empty array of users
const [loading, setLoading] useState(true); // Set loading to true on component mount
const [loading, setLoading] = useState(true); // Set loading to true on component mount
// On load, fetch our users and subscribe to updates
useEffect(() => {