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
Currently Router accepts only one type of children - Scene (actually it doesn't check element name at all now). It makes very complex structures hard to maintain and modify - you will see just numerous </Scene></Scene>...</Scene> - it is difficult to insert new scene into 'middle' of some element.
I propose to add new types for built-in containers - Stack, Tabs, Lightbox and use Scene for child only. It will allow to make JSX more user-friendly:
Currently Router accepts only one type of children -
Scene
(actually it doesn't check element name at all now). It makes very complex structures hard to maintain and modify - you will see just numerous</Scene></Scene>...</Scene>
- it is difficult to insert new scene into 'middle' of some element.I propose to add new types for built-in containers -
Stack
,Tabs
,Lightbox
and useScene
for child only. It will allow to make JSX more user-friendly:The text was updated successfully, but these errors were encountered: