Answers for "difference between components and containers in react"

19

difference between React Native and React

ReactJS is a JavaScript library, supporting both front-end web and being run on a server, for building user interfaces and web applications.

React Native is a mobile framework that compiles to native app components, allowing you to build native mobile applications for different platforms (iOS, Android, and Windows Mobile) in JavaScript that allows you to use ReactJS to build your components, and implements ReactJS under the hood.

Both are open sourced by Facebook.
Posted by: Guest on November-28-2019
1

component vs container react

Component which is responsible for fetching data and 
displaying is called smart or container components. 
Data can be come from redux, any network call or third party subscription.

Dumb/presentational components are those which are responsible for 
presenting view based on props received.
Posted by: Guest on September-26-2020

Code answers related to "difference between components and containers in react"

Code answers related to "Javascript"

Browse Popular Code Answers by Language