Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- componentDidMount() {
- fetch("/employeeSet?$format=json")
- .then((res) => res.json())
- .then(
- (result) => {
- this.setState({
- results: result.d.results,
- isLoaded: true,
- });
- },
- (error) => {
- this.setState({
- isLoaded: false,
- error,
- });
- }
- );
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement