-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsponsorships.tsx
More file actions
63 lines (58 loc) · 1.41 KB
/
sponsorships.tsx
File metadata and controls
63 lines (58 loc) · 1.41 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import React from 'react';
import {
TextField,
Typography,
FormControlLabel,
Checkbox,
FormLabel,
FormControl
} from '@mui/material';
interface props {
formData: {
collab: string,
attract: string,
engagement: string
};
handleChange: (e: React.ChangeEvent<any>) => void;
}
const WebsiteQuestions: React.FC<props> = ({ formData, handleChange }) => (
<>
<FormControl fullWidth>
<FormLabel>
Describe how you approach cross-team collaboration.
</FormLabel>
<TextField
name="sponsorships.collab"
value={formData.collab}
onChange={handleChange}
multiline
rows={5}
/>
</FormControl>
<FormControl fullWidth>
<FormLabel>
How would you attract students who have never participated in hackathons or tech events before?
</FormLabel>
<TextField
name="sponsorships.attract"
value={formData.attract}
onChange={handleChange}
multiline
rows={5}
/>
</FormControl>
<FormControl fullWidth>
<FormLabel>
Have you ever managed a social media account or created content that significantly increased engagement?
</FormLabel>
<TextField
name="sponsorships.engagement"
value={formData.engagement}
onChange={handleChange}
multiline
rows={3}
/>
</FormControl>
</>
);
export default WebsiteQuestions;