-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmocks.ts
35 lines (34 loc) · 1.16 KB
/
mocks.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
import { IBoard } from "./types";
export const MOCK_BOARD: IBoard = {
id: "uriklar-testing",
items: [
{ text: "אחת", categoryId: "1" },
{ text: "שתיים", categoryId: "1" },
{ text: "שלוש", categoryId: "1" },
{ text: "ארבע", categoryId: "1" },
{ text: "אלף", categoryId: "2" },
{ text: "בית", categoryId: "2" },
{ text: "גימל", categoryId: "2" },
{ text: "דלת", categoryId: "2" },
{ text: "כלב", categoryId: "3" },
{ text: "חתול", categoryId: "3" },
{ text: "סוס", categoryId: "3" },
{ text: "נמר", categoryId: "3" },
{ text: "תל אביב", categoryId: "4" },
{ text: "ראשון לציון", categoryId: "4" },
{ text: "אילת", categoryId: "4" },
{ text: "עפולה", categoryId: "4" },
],
answers: {
"1": ["מספרים", "מספר"],
"2": ["אותיות", "אות"],
"3": ["חיות"],
"4": ["ערים בישראל"],
},
clues: {
"1": "כל גיל הוא רק ?",
"2": "כל ספר בישראל מכיל לפחות כמה אלפים",
"3": "יש חמודות ויש מפחידות",
"4": "לא עיר ולא כפר ",
},
};