Skip to content
Snippets Groups Projects
ComponentContext.js 739 B
Newer Older
  • Learn to ignore specific revisions
  • import autoBind from 'auto-bind'
    
    export default class ComponentContext {
      constructor(component) {
        autoBind(this)
    
        this.initStateFn = initialState => {
    
        this.setStateFn = component.setState.bind(component)
    
        this.initStateFn(initialState)
    
          this.setStateFn(state, () => {