So it seems no matter what I do, I can't have a DateTimePicker default to show={true} in a Dialog. I keep getting a Maximum Update error in the popup. All I'm trying to render is this;
return (
<Dialog
title="Select Time Range"
onClose={props.toggleDialog}
width={900}
height={700}
>
<DateTimePicker
show={true}
></DateTimePicker>
</Dialog>
);