3bb5a2fc by Adam Heath

WrapNode only activates when there is no special.

1 parent c2977574
---
import Node from './node.astro'
const { props: { Wrapped, args, ...rest } } = Astro
const { props: { Wrapped, args, special, ...rest } } = Astro
---
{!special &&
<Wrapped {...args}>
<Node {...rest}/>
</Wrapped>
}
......