-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_db.js
25 lines (22 loc) · 1.13 KB
/
_db.js
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
let games = [
{ id: "1", title: "Zelda, Tears of the Kingdom", platform: ["Switch"] },
{ id: "2", title: "Final Fantasy 7 Remake", platform: ["PS5", "Xbox"] },
{ id: "3", title: "Elden Ring", platform: ["PS5", "Xbox", "PC"] },
{ id: "4", title: "Mario Kart", platform: ["Switch"] },
{ id: "5", title: "Pokemon Scarlet", platform: ["PS5", "Xbox", "PC"] },
];
let authors = [
{ id: "1", name: "mario", verified: true },
{ id: "2", name: "yoshi", verified: false },
{ id: "3", name: "peach", verified: true },
];
let reviews = [
{ id: "1", rating: 9, content: "lorem ipsum", author_id: "1", game_id: "2" },
{ id: "2", rating: 10, content: "lorem ipsum", author_id: "2", game_id: "1" },
{ id: "3", rating: 7, content: "lorem ipsum", author_id: "3", game_id: "3" },
{ id: "4", rating: 5, content: "lorem ipsum", author_id: "2", game_id: "4" },
{ id: "5", rating: 8, content: "lorem ipsum", author_id: "2", game_id: "5" },
{ id: "6", rating: 7, content: "lorem ipsum", author_id: "1", game_id: "2" },
{ id: "7", rating: 10, content: "lorem ipsum", author_id: "3", game_id: "1" },
];
export default { games, authors, reviews };