Skip to main content

ABOUT

 About Me


Popular posts from this blog

What is REACT JS?

React is an open-source, front end, JavaScript library for building user interfaces or UI components. It is maintained by Facebook and a community of individual developers and companies. React can be used as a base in the development of single-page or mobile applications.React makes it painless to create interactive UIs. Design simple views for each state in your application, and React will efficiently update and render just the right components when your data changes.

What is JSX?

React embraces the fact that rendering logic is inherently coupled with other UI logic: how events are handled, how the state changes over time, and how the data is prepared for display. Instead of artificially separating  technologies  by putting markup and logic in separate files, React  separates  concerns  with loosely coupled units called “components” that contain both. We will come back to components in a  further section , but if you’re not yet comfortable putting markup in JS,  this talk  might convince you otherwise. React  doesn’t require  using JSX, but most people find it helpful as a visual aid when working with UI inside the JavaScript code. It also allows React to show more useful error and warning messages.