Los productos aparecerán aquí cuando sean agregados
Reglas de Firestore necesarias:
rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
match /categories/{document} {
allow read: if true;
allow write: if request.auth != null;
}
match /products/{document} {
allow read: if true;
allow write: if request.auth != null;
}
match /orders/{document} {
allow read, write: if request.auth != null;
}
}
}