-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmockData.ts
93 lines (89 loc) · 1.87 KB
/
mockData.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
const courses = [
{
id: 1,
title: 'Securing React Apps with Auth0',
slug: 'react-auth0-authentication-security',
authorId: 1,
category: 'JavaScript',
},
{
id: 2,
title: 'React: The Big Picture',
slug: 'react-big-picture',
authorId: 1,
category: 'JavaScript',
},
{
id: 3,
title: 'Creating Reusable React Components',
slug: 'react-creating-reusable-components',
authorId: 1,
category: 'JavaScript',
},
{
id: 4,
title: 'Building a JavaScript Development Environment',
slug: 'javascript-development-environment',
authorId: 1,
category: 'JavaScript',
},
{
id: 5,
title: 'Building Applications with React and Redux',
slug: 'react-redux-react-router-es6',
authorId: 1,
category: 'JavaScript',
},
{
id: 6,
title: 'Building Applications in React and Flux',
slug: 'react-flux-building-applications',
authorId: 1,
category: 'JavaScript',
},
{
id: 7,
title: 'Clean Code: Writing Code for Humans',
slug: 'writing-clean-code-humans',
authorId: 1,
category: 'Software Practices',
},
{
id: 8,
title: 'Architecting Applications for the Real World',
slug: 'architecting-applications-dotnet',
authorId: 1,
category: 'Software Architecture',
},
{
id: 9,
title: 'Becoming an Outlier: Reprogramming the Developer Mind',
slug: 'career-reboot-for-developer-mind',
authorId: 1,
category: 'Career',
},
{
id: 10,
title: 'Web Component Fundamentals',
slug: 'web-components-shadow-dom',
authorId: 1,
category: 'HTML5',
},
];
const authors = [
{ id: 1, name: 'Cory House' },
{ id: 2, name: 'Scott Allen' },
{ id: 3, name: 'Dan Wahlin' },
];
const newCourse = {
id: null,
title: '',
authorId: null,
category: '',
};
module.exports = {
newCourse,
courses,
authors,
};
export {};