Skip to content

Instantly share code, notes, and snippets.

@manoelneto
Created August 5, 2018 15:01
Show Gist options
  • Save manoelneto/16843a522f52d4a0750e271c53ea1088 to your computer and use it in GitHub Desktop.
Save manoelneto/16843a522f52d4a0750e271c53ea1088 to your computer and use it in GitHub Desktop.
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