Last active
March 28, 2017 18:04
-
-
Save tocttou/42954e96f3eceec28a0b207927baabdd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, { Component } from 'react'; | |
| export default class SecondChild extends Component { | |
| render() { | |
| console.log("Rendering!"); | |
| return ( | |
| <div> | |
| {this.props.text} | |
| </div> | |
| ); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment