We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d9ebc2 commit 2b7ea03Copy full SHA for 2b7ea03
1 file changed
tests/integration/test_event_actions.py
@@ -49,10 +49,10 @@ class EventFiringComponent(rx.Component):
49
def _get_custom_code(self) -> str | None:
50
return """
51
function EventFiringComponent(props) {
52
- return (
53
- <div id={props.id} onClick={(e) => props.onClick("foo")}>
54
- Event Firing Component
55
- </div>
+ return jsx(
+ "div",
+ {"id":props.id,"onClick":(e) => props.onClick("foo")},
+ "Event Firing Component",
56
)
57
}"""
58
0 commit comments