-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.js
50 lines (46 loc) · 1.45 KB
/
data.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
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
const CATEGORIES = [
{ name: "technology", color: "#6c7a89" },
{ name: "science", color: "#8ebf42" },
{ name: "finance", color: "#ff6b6b" },
{ name: "society", color: " #d0b066" },
{ name: "entertainment", color: "#d857e1" },
{ name: "health", color: " #789b8a" },
{ name: "history", color: "#9e9287" },
{ name: "news", color: "#9079b6" },
];
const initialFacts = [
{
id: 1,
text: "React is being developed by Meta (formerly facebook)",
source: "https://opensource.fb.com/",
category: "technology",
votesInteresting: 24,
votesMindblowing: 9,
votesFalse: 4,
createdIn: 2021,
},
{
id: 2,
text: "Millennial dads spend 3 times as much time with their kids than their fathers spent with them. In 1982, 43% of fathers had never changed a diaper. Today, that number is down to 3%",
source:
"https://www.mother.ly/parenting/millennial-dads-spend-more-time-with-their-kids",
category: "society",
votesInteresting: 11,
votesMindblowing: 2,
votesFalse: 0,
createdIn: 2019,
},
{
id: 3,
text: "Lisbon is the capital of Portugal",
source: "https://en.wikipedia.org/wiki/Lisbon",
category: "society",
votesInteresting: 8,
votesMindblowing: 3,
votesFalse: 1,
createdIn: 2015,
},
];
// LINK TO APP SAMPLE DATA: https://docs.google.com/spreadsheets/d/1eeldcA_OwP4DHYEvjG0kDe0cRys-cDPhc_E9P9G1e3I/edit#gid=0
// 👍 🤯 ⛔️
export { initialFacts, CATEGORIES };