summaryrefslogtreecommitdiff
path: root/decks.js
diff options
context:
space:
mode:
Diffstat (limited to 'decks.js')
-rw-r--r--decks.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/decks.js b/decks.js
new file mode 100644
index 0000000..166e825
--- /dev/null
+++ b/decks.js
@@ -0,0 +1,17 @@
+let decks = [
+ { name: 'Basic Set'
+ , pairs: [
+ [ 'hello', 'world' ],
+ ]},
+ { name: 'Medium Set'
+ , pairs: [
+ [ 'greetings', 'world' ],
+ [ 'bonjour', 'world' ],
+ ]},
+ { name: 'Advanced Set'
+ , pairs: [
+ [ 'salutations', 'world' ],
+ [ 'aloha', 'world' ],
+ [ 'zuzu', 'world' ],
+ ]},
+];