You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
311 B
311 B
title | order | example_name |
---|---|---|
A Stateful Component | 1 | timerExample |
In addition to taking input data (accessed via this.props
), a component can maintain internal state data (accessed via this.state
). When a component's state data changes, the rendered markup will be updated by re-invoking render()
.