Skip to content
dnangel298 edited this page Nov 18, 2022 · 2 revisions

## Welcome to the First-Responsive-Website-Using-React wiki!

# ### This is a Basic Responsive Front-End Website Built on React

Dependencies:

  • TailwindCSS
  • ChartJS
  • Axios
  • materialTailwind

You might need to install NodeJS if you haven't installed it yet on your computer


Feel Free to use this small project of mine to practice or even hone your own skills in web development


Small Background About React

The React.js framework is an open-source JavaScript framework and library developed by Facebook. It’s used for building interactive user interfaces and web applications quickly and efficiently with significantly less code than you would with vanilla JavaScript.

In React, you develop your applications by creating reusable components that you can think of as independent Lego blocks. These components are individual pieces of a final interface, which, when assembled, form the application’s entire user interface.

React’s primary role in an application is to handle the view layer of that application just like the V in a model-view-controller (MVC) pattern by providing the best and most efficient rendering execution. Rather than dealing with the whole user interface as a single unit, React.js encourages developers to separate these complex UIs into individual reusable components that form the building blocks of the whole UI. In doing so, the ReactJS framework combines the speed and efficiency of JavaScript with a more efficient method of manipulating the DOM to render web pages faster and create highly dynamic and responsive web applications.

Source: https://blog.hubspot.com/website/react-js#:~:text=The%20React.,you%20would%20with%20vanilla%20JavaScript.