-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForm.js
51 lines (43 loc) · 977 Bytes
/
Form.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
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
import React, { Component } from "react";
class Form extends Component {
initialState = {
name: "",
job: "",
};
state = this.initialState;
handleChange = (event) => {
const { name, value } = event.target;
this.setState({
[name]: value,
});
};
submitForm = () => {
this.props.handleSubmit(this.state)
this.setState(this.initialState)
}
render() {
const { name, job } = this.state;
return (
<form>
<label htmlFor="name">Name</label>
<input
type="text"
name="name"
id="name"
value={name}
onChange={this.handleChange}
/>
<label htmlFor="job">Job</label>
<input
type="text"
name="job"
id="job"
value={job}
onChange={this.handleChange}
/>
<input type="button" value="Submit" onClick={this.submitForm}/>
</form>
);
}
}
export default Form;