Advertisement
Guest User

Untitled

a guest
Jun 27th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. class Example extends Component {
  2. componentDidMount() {
  3. const myVariable = 'this thing';
  4. }
  5.  
  6. componentDidUpdate() {
  7. // I'd like my variable to be accessible here
  8. console.log(myVariable);
  9. }
  10.  
  11. render() {...}
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement