Skip to content

Instantly share code, notes, and snippets.

@klaytonfaria
Created April 19, 2017 20:44
Show Gist options
  • Save klaytonfaria/67aef463743651f45388767427c6519d to your computer and use it in GitHub Desktop.
Save klaytonfaria/67aef463743651f45388767427c6519d to your computer and use it in GitHub Desktop.
var reactRoot = document.querySelector("[data-reactroot]");
var instance = Object.getOwnPropertyNames(reactRoot).filter((val) => {
let filteredProperty = '';
if (val.indexOf('__reactInternalInstance$') >= 0) {
filteredProperty = val;
}
return filteredProperty;
});
instance[0]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment