forked from creativetimofficial/nextjs-material-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeneral.js
26 lines (24 loc) · 1.04 KB
/
general.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
// ##############################
// // // Tasks for TasksCard - see Dashboard view
// #############################
var bugs = [
'Sign contract for "What are conference organizers afraid of?"',
"Lines From Great Russian Literature? Or E-mails From My Boss?",
"Flooded: One year later, assessing what was lost and what was found when a ravaging rain swept through metro Detroit",
"Create 4 Invisible User Experiences you Never Knew About",
];
var website = [
"Flooded: One year later, assessing what was lost and what was found when a ravaging rain swept through metro Detroit",
'Sign contract for "What are conference organizers afraid of?"',
];
var server = [
"Lines From Great Russian Literature? Or E-mails From My Boss?",
"Flooded: One year later, assessing what was lost and what was found when a ravaging rain swept through metro Detroit",
'Sign contract for "What are conference organizers afraid of?"',
];
module.exports = {
// these 3 are used to create the tasks lists in TasksCard - Dashboard view
bugs,
website,
server,
};