-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmockBusinesses.js
More file actions
41 lines (40 loc) · 950 Bytes
/
mockBusinesses.js
File metadata and controls
41 lines (40 loc) · 950 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
function getMockBusinesses() {
return [
{
name: "Ohio Plumbing & Boiler",
website: "https://www.ohioplumbing.com",
phone: "330-555-1111",
reviews: 40,
category: "plumbing",
},
{
name: "Apollo Heating & Cooling",
website: "https://www.apolloheatingandcooling.com",
phone: "330-555-2222",
reviews: 80,
category: "hvac",
},
{
name: "Aspen Dental",
website: "https://www.aspendental.com",
phone: "330-555-3333",
reviews: 60,
category: "dental",
},
{
name: "Mr. Rooter Plumbing",
website: "https://www.mrrooter.com",
phone: "330-555-4444",
reviews: 100,
category: "plumbing",
},
{
name: "One Hour Heating & Air",
website: "https://www.onehourheatandair.com",
phone: "330-555-5555",
reviews: 120,
category: "hvac",
}
];
}
module.exports = { getMockBusinesses };