()
| 9 | } |
| 10 | |
| 11 | render(){ |
| 12 | return ( |
| 13 | <section> |
| 14 | <div onClick={this.props.onClick}>{this.state.test}</div> |
| 15 | <p className="box" data-p-tag>found me!</p> |
| 16 | <button |
| 17 | type="button" |
| 18 | onClick={this.props.onClick}> |
| 19 | Click Me |
| 20 | </button> |
| 21 | <button |
| 22 | type="button" |
| 23 | onClick={this.props.onClick}> |
| 24 | Click Me |
| 25 | </button> |
| 26 | <input className="notbob" name /> |
| 27 | <input className="bob" name="bob" /> |
| 28 | <TinyComponent test="true"/> |
| 29 | <OtherComponent test="true"/> |
| 30 | </section> |
| 31 | ) |
| 32 | } |
| 33 | } |