Created
April 21, 2021 12:46
-
-
Save yuritoledo/5306b04e79021269b7c768e6e5db9a70 to your computer and use it in GitHub Desktop.
Article about test
This file contains hidden or 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
// de: | |
const MyInput = ({ onChange, value }) => ( | |
<Container> | |
<Label htmlFor="campoId"> | |
Campo X | |
<Input id="campoId" onChange={onChange} value={value} /> | |
</Label> | |
</Container> | |
) | |
// para: | |
<div class="JplxKet"> | |
<label class="QidVzlI" for="campoId"> | |
Campo X | |
<input class="PnxhE" id="campoId" value="" /> | |
</label> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment