dash
                                
                                 dash copied to clipboard
                                
                                    dash copied to clipboard
                            
                            
                            
                        [BUG] No rendering if two component as props inside a dictionary.
When defining props on component, if you have two props that can be components inside a list of dictionaries, the components are not rendered and a react error indicate objects are invalid.
Example props:
type Props = {
   fields: {
      label?: JSX.Element;
      input_component?: JSX.Element;
   }[];
}