-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmocks.ts
More file actions
49 lines (49 loc) · 828 Bytes
/
mocks.ts
File metadata and controls
49 lines (49 loc) · 828 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
42
43
44
45
46
47
48
49
export const unorganizedData = [
{
name: "carl",
age: 18,
address: {
street: "of nations",
city: "jipa",
adcionalInfo: {
title: "i dont know",
subtitle: "subtitle",
},
},
tags: ["array", "filter"],
luckyNumbers: [1, 2, 3, 4],
friends: [
{
name: "jamelin",
id: 1,
age: 20,
},
],
},
{
name: "juca",
age: 30,
address: {
street: "das dorgas",
city: "github",
adcionalInfo: {
title: "sei lá",
subtitle: "subtitle",
},
},
tags: ["array", "filter"],
luckyNumbers: [1, 2, 3, 4],
friends: [
{
name: "jamelão",
id: 1,
age: 30,
},
{
name: "rafael",
id: 9,
age: 29,
},
],
},
];