Différence entre React et React Native

Main differences between Reactjs and React Native

When it comes to a web platform, Reactjs can be defined as a base derivative of React DOM, while React Native acts as a base derivative by keeping workflow and syntax the same alongside altering components.
React is a JavaScript library that can help your developers in building a highly responsive UI Layer and React Native on the other hand is a complete framework to develop cross-platform applications.
Virtual DOM is used to extract browser code in React; native APIs help in rendering components in mobile in React Native.
In React Native, UI is rendered with the help of JSX but the applications curated with Reactjs extract HTML in UI.
For styling in Reactjs, CSS is used, and React Native platform requires a stylesheet for styling.
Using CSS, you can carry out animation in Reactjs; for animation in React Native, you need to use an animated API.
Lokesh Thakur