🛒 Miyuu Official Store

Hardware & AI Solutions by Yun Yun

Produk Utama

RAM & SSD (Akan Datang)

Sistem ini dikuasakan oleh Miyuu AI

// Import Firestore import { getFirestore, collection, addDoc } from "https://www.gstatic.com/firebasejs/10.0.0/firebase-firestore.js"; // Initialize Firestore const db = getFirestore(app); // Fungsi untuk tambah produk baru (Ujian) async function tambahProduk() { try { const docRef = await addDoc(collection(db, "products"), { name: "Miyuu SSD 512GB", price: 280, stock: 20, category: "Storage" }); console.log("Produk berjaya ditambah dengan ID: ", docRef.id); } catch (e) { console.error("Ralat menambah dokumen: ", e); } }