Created
August 5, 2018 15:14
-
-
Save manoelneto/8572022cfd3d637e04f7358eee4ae553 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 from 'react'; | |
export default ({value, onChange}) => ( | |
<div> | |
Olá, o progresso é {value} | |
<input type="text" value={value} onChange={(evt) => onChange(evt.target.value)}/> | |
</div> | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment