What is the difference between React Native and React?

后端 未结 30 2618
粉色の甜心
粉色の甜心 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:44

    A simple comparison should be

    ReactJs

    return(
        

    Hello World

    )

    React Native

    return(
        
          Hello World
        
    )
    

    React Native don't have Html Elements like div, p, h1, etc, instead it have components that make sense for mobile.
    More details at https://reactnative.dev/docs/components-and-apis

提交回复
热议问题