Skip to content

Instantly share code, notes, and snippets.

@marlo22
Created July 19, 2019 08:26
Show Gist options
  • Save marlo22/f9bf5e8ca5306486975ff75b62c458bd to your computer and use it in GitHub Desktop.
Save marlo22/f9bf5e8ca5306486975ff75b62c458bd to your computer and use it in GitHub Desktop.
JSX to plain object
<div className="search-box">
<label for="search">Wyszukaj:</label>
<input type="text" id="search" placeholder="Wyszukaj..." />
</div>
{
"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