fetch posts from db, can post and like posts

This commit is contained in:
Ruidy Nemausat 2020-05-19 14:59:50 +02:00
parent 7f28b6030a
commit 32b336327a

View file

@ -0,0 +1,9 @@
/**
* Register all firestore collections
*/
enum Collections {
USERS = 'users',
POSTS = 'posts',
}
export default Collections;