-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTextInput.jsx
67 lines (66 loc) · 1.42 KB
/
TextInput.jsx
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
export default [
{
id: "compName",
name:"compName",
type: "text",
placeholder: "Company Name",
htmlfor:"compName",
labelTxt:"Company Name"
},
{
id: "position",
name:"position",
type: "text",
placeholder: "Position",
htmlfor:"position",
labelTxt:"Position"
},
{
id: "country",
name:"country",
type: "text",
placeholder: "Country",
htmlfor:"country",
labelTxt:"Country"
},
{
id: "date",
name:"date",
type: "date",
placeholder: "Date",
htmlfor:"date",
labelTxt:"Date"
},
{
id: "salary",
name:"salary",
type: "number",
placeholder: "Pound £",
htmlfor:"salary",
labelTxt:"Salary"
},
{
id: "intPlace",
name:"intPlace",
type: "text",
placeholder: "Place: Birmingham",
htmlfor:"intPlace",
labelTxt:"Location"
},
{
id: "intDate",
name:"intDate",
type: "datetime-local",
placeholder: "",
htmlfor:"intDate",
labelTxt:"Date-time"
},
{
id: "intLink",
name:"intLink",
type: "link",
placeholder: "Interview link",
htmlfor:"intLink",
labelTxt:"Link"
}
]