Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/components/MeetupList.js
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ const meetups = [
emoji: ":thailand:",
location: "Chiang Mai",
link: "https://www.facebook.com/groups/219236462407862/",
},
},
{
title: "Web3 Together",
emoji: ":cambodia:",
Expand Down Expand Up @@ -316,6 +316,10 @@ const LeftContainer = styled.div`
flex: 1 1 75%;
margin-right: 1rem;
`

// sort meetups by country and then by city
_.sortBy(meetups, ['emoji', 'location']);

// TODO create generalized CardList / TableCard
// TODO prop if ordered list or unordered
const MeetupList = () => (
Expand Down