import React, { useState, useEffect } from ‘react’; import { initializeApp } from ‘firebase/app’; import { getAuth, signInAnonymously, signInWithCustomToken, onAuthStateChanged } from ‘firebase/auth’; import { getFirestore } from ‘firebase/firestore’; // Icon cho nút đọc âm thanh const SpeakerIcon = () => ( ); // Hàm tiện ích để trộn mảng const shuffleArray = (array) => […]
Recent comments