Skip to content

Instantly share code, notes, and snippets.

@singerxt
Created May 15, 2018 11:20
Show Gist options
  • Save singerxt/5130dd19cad37e505b11d076677c1fd1 to your computer and use it in GitHub Desktop.
Save singerxt/5130dd19cad37e505b11d076677c1fd1 to your computer and use it in GitHub Desktop.
import React, { Component } from 'react'
import style from './style.css'
import { patchGnome } from '../../utils/HrApiHelper'
class Edit extends Component {
patchGnome() {
const testDate = {
id: 1233,
name: 'siema',
};
patchGnome(testDate.id).then(console.log).catch(console.log);
}
render() {
return <div onClick={this.patchGnome}>test</div>
}
}
export default Edit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment