Created
August 5, 2018 15:01
-
-
Save manoelneto/16843a522f52d4a0750e271c53ea1088 to your computer and use it in GitHub Desktop.
This file contains 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'; | |
import Progress from 'components/Progress'; | |
class App extends Component { | |
state = { | |
count: 10 | |
} | |
render() { | |
return <div> | |
<div> | |
O progresso é {this.state.count} | |
</div> | |
<Progress value={this.state.count} /> | |
</div> | |
} | |
} | |
export default App; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment