-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflashcards.js
34 lines (33 loc) · 1.39 KB
/
flashcards.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
var flashcards = [
{
username: 'kaijuking',
deckname: 'JLPT N2 Verbs',
cards: [{id: 1, word: '食べる', pronunciation: 'たべる', meaning: 'to eat', type: 'ru-verb'},
{id: 2, word: '食べる', pronunciation: 'たべる', meaning: 'to eat', type: 'ru-verb'}]
},
{
username: 'kaijuking',
deckname: 'JLPT N2 Ajective',
cards: [{id: 1, word: '食べる', pronunciation: 'たべる', meaning: 'to eat', type: 'ru-verb'},
{id: 2, word: '食べる', pronunciation: 'たべる', meaning: 'to eat', type: 'ru-verb'}]
},
{
username: 'kaijuking',
deckname: 'Genki 1',
cards: [{id: 1, word: '食べる', pronunciation: 'たべる', meaning: 'to eat', type: 'ru-verb'},
{id: 2, word: '食べる', pronunciation: 'たべる', meaning: 'to eat', type: 'ru-verb'}]
},
{
username: 'kaijuking',
deckname: 'Genki 2',
cards: [{id: 1, word: '食べる', pronunciation: 'たべる', meaning: 'to eat', type: 'ru-verb'},
{id: 2, word: '食べる', pronunciation: 'たべる', meaning: 'to eat', type: 'ru-verb'}]
},
{
username: 'kaijuking',
deckname: 'Business Japanese',
cards: [{id: 1, word: '食べる', pronunciation: 'たべる', meaning: 'to eat', type: 'ru-verb'},
{id: 2, word: '食べる', pronunciation: 'たべる', meaning: 'to eat', type: 'ru-verb'}]
}
];
module.exports = flashcards;