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
What sort of level of effort are we talking about to enhance react-json-schema to support React Native usage? Would it even be possible to work in the native app component world as opposed to the DOM world?
The text was updated successfully, but these errors were encountered:
Someone could use React Native elements by adding RN elements to the setComponentMap call
constschema={component: "CommentList",children: [{component: "Comment",author: "Pete Hunt",children: [{component: "Text",text: "This is one comment"}]},{component: "Comment",author: "Jordan Walke",children: [{component: "Text",text: "This is *another* comment"}]}]};constview=newReactJsonSchema();view.setComponentMap({ CommentList, Comment, Text, View });
It makes me wonder if a user could just pass in the same DOM object from react-dom-factories that is
happening in resolveComponents so this tool could be agnostic of ReactDOM or React Native
What sort of level of effort are we talking about to enhance react-json-schema to support React Native usage? Would it even be possible to work in the native app component world as opposed to the DOM world?
The text was updated successfully, but these errors were encountered: