Skip to content

Instantly share code, notes, and snippets.

@leihuagh
Created April 20, 2018 17:49
Show Gist options
  • Select an option

  • Save leihuagh/14fb50797abf122414071a2e93de43a0 to your computer and use it in GitHub Desktop.

Select an option

Save leihuagh/14fb50797abf122414071a2e93de43a0 to your computer and use it in GitHub Desktop.
store.js
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