aperitif-editor
aperitif-editor copied to clipboard
[Feature] drag boolean props to conditionally render children.
If a prop is a boolean, suggest being able to drag it so that you can create conditional rendering of a portion of JSX.
awesomeProp
=>>>
{awesomeProp && (
<Component>
{param}
</Component>
)}