Skip to content

Instantly share code, notes, and snippets.

@yuritoledo
Created April 21, 2021 12:46
Show Gist options
  • Save yuritoledo/5306b04e79021269b7c768e6e5db9a70 to your computer and use it in GitHub Desktop.
Save yuritoledo/5306b04e79021269b7c768e6e5db9a70 to your computer and use it in GitHub Desktop.
Article about test
// 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