Skip to content

Commit 967a21d

Browse files
committed
created fake array for mock db
1 parent b219545 commit 967a21d

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

data.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
const pets = [
2+
{
3+
id: 1,
4+
name: "Bella",
5+
type: "Dog"
6+
},
7+
{
8+
id: 2,
9+
name: "Whiskers",
10+
type: "Cat"
11+
}
12+
];
13+
14+
module.exports = pets;

0 commit comments

Comments
 (0)