diff --git a/dash/development/base_component.py b/dash/development/base_component.py index 9cf84010a3..5cabecf865 100644 --- a/dash/development/base_component.py +++ b/dash/development/base_component.py @@ -139,14 +139,6 @@ def __init__(self, **kwargs): ) ) - if k != "children" and isinstance(v, Component): - raise TypeError( - error_string_prefix - + " detected a Component for a prop other than `children`\n" - + "Did you forget to wrap multiple `children` in an array?\n" - + "Prop {} has value {}\n".format(k, repr(v)) - ) - if k == "id": if isinstance(v, dict): for id_key, id_val in v.items():