diff options
| author | Andrew <saintruler@gmail.com> | 2019-03-11 21:00:02 +0400 |
|---|---|---|
| committer | Andrew <saintruler@gmail.com> | 2019-03-11 21:00:02 +0400 |
| commit | 7e7dd5244e8d26485ad7950a89c04c98c4fef83f (patch) | |
| tree | 810730c4650392080fb87a78d3b527201e89fe4b /frontend/app/data/raw/cards.js | |
Initial commit/
Diffstat (limited to 'frontend/app/data/raw/cards.js')
| -rw-r--r-- | frontend/app/data/raw/cards.js | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/frontend/app/data/raw/cards.js b/frontend/app/data/raw/cards.js new file mode 100644 index 0000000..7533e89 --- /dev/null +++ b/frontend/app/data/raw/cards.js @@ -0,0 +1,40 @@ +const cards = + [{ + id: 1, + name: 'Cindee Seton', + bank: 'CitiBank', + amount: 440, + date: '07/19', + cardNo: '3538********8699', + type: 'visa', + currency: 'usd', + }, { + id: 2, + name: 'Cindee Seton', + bank: 'CitiBank', + amount: 1740, + date: '07/19', + cardNo: '5602********1161', + type: 'mastercard', + currency: 'eur', + }, { + id: 3, + name: 'Cindee Seton', + bank: 'CitiBank', + amount: 2120, + date: '09/24', + cardNo: '3379********5427', + type: 'axp', + currency: 'usd', + }, { + id: 4, + name: 'Cindee Seton', + bank: 'CitiBank', + amount: 3150, + date: '02/21', + cardNo: '4911********8396', + type: 'visa', + currency: 'eur', + }]; + +export default cards; |