A component that conditionally renders its children based on a boolean condition.

This component is useful for rendering content only when a specific condition is met. If the condition is false, it returns null, effectively rendering nothing.

<NullWrapper condition={true}>
<p>This will be rendered if condition is true.</p>
</NullWrapper>