serialize(
<div>
<h1 align="center">
<blink>Hello</blink>
</h1>
</div>
) | ⇄ |
deserialize({
type: "div",
props: {
children: {
type: "h1",
props: {
align: "center",
children: { type: "blink", props: { children: "Hello" } }
}
}
}
}) |
npm i react-serialize
See src/index.js.