Created
August 7, 2015 21:33
-
-
Save rstormsf/10de720a8cd51aadd5fa to your computer and use it in GitHub Desktop.
Revisions
-
rstormsf created this gist
Aug 7, 2015 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ class TodoList extends React.Component { constructor(props) { super(props); this.state = {name: "nope"}; } render() { return ( <ul> <li>Updated</li> <li id='status'>{this.props.name}</li> </ul>) } };