I would like to conditionally render a component in a VisualForce page based on a custom field.
I was hoping to do something like this:
<apex:page standardController="myObject__c">
<c:myComponent myProperty="{! Id }" render="{! myBoolean__c }" />
</apex:page>
Components don't have a render property though.
What is the best way to do this?