JavaScript for WordPress › Forums › Gutenberg Development › Error in › Reply To: Error in
April 16, 2018 at 11:35 am
#45210
Zac Gordon
Keymaster
Okay so like it says you can’t do this:
<div>1</div>
<div>2</div>
And have to have a single element returned like this:
<div>
<div>1</div>
<div>2</div>
</div>
I think I see an example of this in your save method. There might be another instance but that is the situation you are looking for 🙂
Hope that helps!