We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5412757 commit 7923573Copy full SHA for 7923573
1 file changed
src/reactpy/core/vdom.py
@@ -134,14 +134,14 @@ def __init__(
134
if module_name:
135
self.__module__ = module_name
136
self.__qualname__ = f"{module_name}.{tag_name}"
137
-
+
138
def __getattr__(self, attr: str) -> Vdom:
139
return Vdom(
140
f"{self.__name__}.{attr}",
141
allow_children=self.allow_children,
142
import_source=self.import_source
143
)
144
145
@overload
146
def __call__(
147
self, attributes: VdomAttributes, /, *children: VdomChildren
0 commit comments