Skip to content

Commit

Permalink
feat(project): add card enum aspect ratio
Browse files Browse the repository at this point in the history
  • Loading branch information
demmyhonore committed Apr 28, 2021
1 parent 4086f33 commit 2bec3c9
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/enum/Card.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
const ASPECT_RATIO = {
1_1: "oneOne",
2_1: "twoOne",
2_3: "twoThree",
4_3: "fourThree",
5_3: "fiveThree",
16_9: "sixteenNine",
}

export {
ASPECT_RATIO,
}

0 comments on commit 2bec3c9

Please sign in to comment.