Created
April 20, 2018 17:49
-
-
Save leihuagh/14fb50797abf122414071a2e93de43a0 to your computer and use it in GitHub Desktop.
store.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const muscles = ['shoulders', 'chest', 'arms', 'back', 'legs'] | |
| const exercises = [ | |
| { | |
| id: 'overhead-press', | |
| title: 'Overhead Press', | |
| description: 'Delts exercise...', | |
| muscles: 'shoulders' | |
| }, | |
| { | |
| id: 'dips', | |
| title: 'Dips', | |
| description: 'Triceps exercise...', | |
| muscles: 'arms' | |
| }, | |
| { | |
| id: 'babell-curls', | |
| title: 'Babell Curls', | |
| description: 'Biceps exercise...', | |
| muscles: 'arms' | |
| }, | |
| { | |
| id: 'bench-press', | |
| title: 'Bench Press', | |
| description: 'Chest exercise...', | |
| muscles: 'chest' | |
| }, | |
| { | |
| id: 'pull-ups', | |
| title: 'Pull Ups', | |
| description: 'Back and biceps exercise...', | |
| muscles: 'back' | |
| }, | |
| { | |
| id: 'deadlifts', | |
| title: 'Deadlifts', | |
| description: 'Back and leg exercise...', | |
| muscles: 'back' | |
| }, | |
| { | |
| id: 'squates', | |
| title: 'Squats', | |
| description: 'Legs exercise...', | |
| muscles: 'legs' | |
| } | |
| ] | |
| export { muscles, exercises } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment