Skip to content

Instantly share code, notes, and snippets.

@toxicFork
toxicFork / MyComponent.jsx
Created March 25, 2016 13:07
exposing function to child
class MyComponent extends React.Component{
constructor(props, context) {
super(props, context);
this.editorControls = null;
this.focusFunction = (objectToFocus) => {
if(!this.editorControls) {
return;
}