You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is very interesting project. However, I'd like to translate to a dictionary node than a class object.
How should I look into?
I mean: <Hello name = "World" />
could translate to { 'type':Hello, 'props': { 'name': "World", } }
Why I need this is because it can be lighter than class object.
I can use it for VDOM diff directly.
or translate to a node object. Node(type=Hello, props = {'name': "World"})
The text was updated successfully, but these errors were encountered:
It is very interesting project. However, I'd like to translate to a dictionary node than a class object.
How should I look into?
I mean:
<Hello name = "World" />
could translate to
{ 'type':Hello, 'props': { 'name': "World", } }
Why I need this is because it can be lighter than class object.
I can use it for VDOM diff directly.
or translate to a node object.
Node(type=Hello, props = {'name': "World"})
The text was updated successfully, but these errors were encountered: