Created
October 22, 2016 01:38
-
-
Save JasonShin/3d61e091d54a83f786f3af96ebdf2eaf to your computer and use it in GitHub Desktop.
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 workshopsList = this.props.store.filteredWorkshops.map( (workshop) => { | |
| let formattedRangeDate = getFormattedRangeDate(workshop.StartDate, workshop.EndDate, this.rageDateDelimeter); | |
| let maxSeats = workshop.maximum; | |
| let availables = workshop.maximum - workshop.BookingCount; | |
| let monthDate = getMonthDate(workshop.StartDate); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment