aboutsummaryrefslogtreecommitdiffstats
path: root/Members.js
blob: 9e8a74dad05a2c714e67031038972cee9f2801b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
const members = [
  {
	id: 1,
	name: 'Garth Brooks',
	email: 'garth.brooks@gmail.com',
	status: 'active'
  },
  {
    id: 2,
	name: 'Bob Evans',
	email: 'bob.evans@gmail.com',
	status: 'inactive'
  },
  {
	id: 3,
	name: 'Alan Jackson',
	email: 'alan.jackson@gmail.com',
	status: 'active'
  }
];

module.exports = members;