keeps on homepage

This commit is contained in:
Annika
2022-08-02 15:00:04 -06:00
parent 5691fe7575
commit 80b7b86c73
9 changed files with 114 additions and 28 deletions
+12
View File
@@ -0,0 +1,12 @@
export class Keep {
constructor(keepData) {
this.id = keepData.id
this.creatorId = keepData.creatorId
this.name = keepData.name
this.description = keepData.description
this.img = keepData.img
this.views = keepData.views
this.kept = keepData.kept
this.creator = keepData.creator
}
}