Created
July 19, 2019 08:26
-
-
Save marlo22/f9bf5e8ca5306486975ff75b62c458bd to your computer and use it in GitHub Desktop.
JSX to plain object
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
<div className="search-box"> | |
<label for="search">Wyszukaj:</label> | |
<input type="text" id="search" placeholder="Wyszukaj..." /> | |
</div> |
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
{ | |
"type": "div", | |
"props": { | |
"className": "search-box" | |
}, | |
"children": [ | |
{ | |
"type": "label", | |
"props": { | |
"for": "search" | |
}, | |
"children": [ | |
"Wyszukaj:" | |
] | |
}, | |
{ | |
"type": "input", | |
"props": { | |
"type": "text", | |
"id": "search", | |
"placeholder": "Wyszukaj..." | |
}, | |
"children": null | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment