What is the difference between React Native and React?

后端 未结 30 2702
粉色の甜心
粉色の甜心 2020-11-28 00:22

I have started to learn React out of curiosity and wanted to know the difference between React and React Native - though could not find a satisfactory answer using

30条回答
  •  感动是毒
    2020-11-28 00:52

    React Native

    • It is a framework for building native applications using JavaScript.

    • It compiles to native app components, which makes it possible for you to build native mobile applications.

    • No need to overhaul your old app. All you have to do is add React Native UI components into your existing app’s code, without having to rewrite.

    React js

    • It supporting both front-end web and being run on a server, for building user interfaces and web applications.

    • It also allows us to create reusable UI components.

    • You can reuse code components in React JS, saving you a lot of time.

提交回复
热议问题