File tree Expand file tree Collapse file tree 3 files changed +2
-260
lines changed
js/packages/event-to-object/src Expand file tree Collapse file tree 3 files changed +2
-260
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -544,8 +544,8 @@ class DangerouslySetInnerHTML(TypedDict):
544544 __html : str
545545
546546
547- # TODO: It's probably better to break this one attributes dict down into what each specific
548- # HTML node's attributes can be, and make sure those types are resolved correctly within `HtmlConstructor`
547+ # TODO: It's probably better to break this down into what each HTML node's attributes can be,
548+ # and make sure those types are resolved correctly within `HtmlConstructor`
549549# TODO: This could be generated by parsing from `@types/react` in the future
550550# https://www.npmjs.com/package/@types/react?activeTab=code
551551VdomAttributesTypeDict = TypedDict (
Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ def use_toggle(init=False):
1010 return state , lambda : set_state (lambda old : not old )
1111
1212
13- # TODO: Remove this
1413def use_counter (initial_value ):
1514 state , set_state = use_state (initial_value )
1615 return state , lambda : set_state (lambda old : old + 1 )
You can’t perform that action at this time.
0 commit comments