-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathContributor.jsx
More file actions
45 lines (43 loc) · 1.07 KB
/
Contributor.jsx
File metadata and controls
45 lines (43 loc) · 1.07 KB
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
import ContributionResources from '../ContributionResources';
const Contributor = {
'user-responses': [
{
name: 'Show me the prerequisites and resources. ',
child: ContributionResources,
},
{
name: 'How to find and fix bugs?',
//temp
child: {
'user-responses': [{ name: 'oops.' }],
'gooey-response': { gooey: 'Working..' },
},
},
{
name: 'I wish to explore other contribution domains.',
child: {
'user-responses': [
{
name: 'I wish to work on the core Game Dev ☕',
},
{
name: 'I want to make mods.',
},
{
name: 'I wish to contribute with Translations and Documentation.',
},
{
name: 'I wish to contribute in Game UI in Destination Sol.',
},
],
'gooey-response': {
gooey: 'Where do you wish to contribute?',
},
},
},
],
'gooey-response': {
gooey: 'Here are some contribution areas..',
},
};
export default Contributor;