InterviewSolution
| 1. |
Are All React Components Usable In React Native? |
|
Answer» Web REACT components use DOM ELEMENTS to display (ex. div, H1, table, etc) but these are not supported by React Native. You'll need to find libraries/components made specifically for React Native. I doubt there are components that supports both, thus it should be fairly easy to figure out if it's made for React Native or not. As of now, if the creator does not specifically SAY that they made for React Native, it probably does not work on React Native. Web React components use DOM elements to display (ex. div, h1, table, etc) but these are not supported by React Native. You'll need to find libraries/components made specifically for React Native. I doubt there are components that supports both, thus it should be fairly easy to figure out if it's made for React Native or not. As of now, if the creator does not specifically say that they made for React Native, it probably does not work on React Native. |
|