-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdata.ts
148 lines (146 loc) · 3.12 KB
/
data.ts
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
import { faker } from "@faker-js/faker";
export type Customer = {
id: string
address: {
country: string
state: string
city: string
street: string
}
createdAt: number
email: string
name: string
phone: string
}
export const customers: Customer[] = [
{
id: faker.datatype.uuid(),
address: {
country: "USA",
state: "West Virginia",
city: "Parkersburg",
street: "2849 Fulton Street"
},
createdAt: 1555016400000,
email: "[email protected]",
name: "Ekaterina Tankova",
phone: "304-428-3097"
},
{
id: faker.datatype.uuid(),
address: {
country: "USA",
state: "Bristow",
city: "Iowa",
street: "1865 Pleasant Hill Road"
},
createdAt: 1555016400000,
email: "[email protected]",
name: "Cao Yu",
phone: "712-351-5711"
},
{
id: faker.datatype.uuid(),
address: {
country: "USA",
state: "Georgia",
city: "Atlanta",
street: "4894 Lakeland Park Drive"
},
createdAt: 1555016400000,
email: "[email protected]",
name: "Alexa Richardson",
phone: "770-635-2682"
},
{
id: faker.datatype.uuid(),
address: {
country: "USA",
state: "Ohio",
city: "Dover",
street: "4158 Hedge Street"
},
createdAt: 1554930000000,
email: "[email protected]",
name: "Anje Keizer",
phone: "908-691-3242"
},
{
id: faker.datatype.uuid(),
address: {
country: "USA",
state: "Texas",
city: "Dallas",
street: "75247"
},
createdAt: 1554757200000,
email: "[email protected]",
name: "Clarke Gillebert",
phone: "972-333-4106"
},
{
id: faker.datatype.uuid(),
address: {
country: "USA",
state: "California",
city: "Bakerfield",
street: "317 Angus Road"
},
createdAt: 1554670800000,
email: "[email protected]",
name: "Adam Denisov",
phone: "858-602-3409"
},
{
id: faker.datatype.uuid(),
address: {
country: "USA",
state: "California",
city: "Redondo Beach",
street: "2188 Armbrester Drive"
},
createdAt: 1554325200000,
email: "[email protected]",
name: "Ava Gregoraci",
phone: "415-907-2647"
},
{
id: faker.datatype.uuid(),
address: {
country: "USA",
state: "Nevada",
city: "Las Vegas",
street: "1798 Hickory Ridge Drive"
},
createdAt: 1523048400000,
email: "[email protected]",
name: "Emilee Simchenko",
phone: "702-661-1654"
},
{
id: faker.datatype.uuid(),
address: {
country: "USA",
state: "Michigan",
city: "Detroit",
street: "3934 Wildrose Lane"
},
createdAt: 1554702800000,
email: "[email protected]",
name: "Kwak Seong-Min",
phone: "313-812-8947"
},
{
id: faker.datatype.uuid(),
address: {
country: "USA",
state: "Utah",
city: "Salt Lake City",
street: "368 Lamberts Branch Road"
},
createdAt: 1522702800000,
email: "[email protected]",
name: "Merrile Burgett",
phone: "801-301-7894"
}
];