Skip to content

Commit e3a11bf

Browse files
committed
checking component equivalence can be added later
1 parent 42ee01c commit e3a11bf

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/idom/core/component.py

-3
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,6 @@ def render(self) -> VdomDict:
6666
model = {"tagName": "div", "children": [model]}
6767
return model
6868

69-
def __eq__(self, other: Any) -> bool:
70-
return isinstance(other, Component) and other._func == self._func
71-
7269
def __repr__(self) -> str:
7370
sig = inspect.signature(self._func)
7471
try:

0 commit comments

Comments
 (0)