/react-expense-tracker

Another React Task Tracker App from following tutorial

Primary LanguageJavaScriptGNU General Public License v3.0GPL-3.0

React Expense Tracker

React Expense Tracker App from following another tutorial from course of Maximillian Academind.

Learnings

  1. React uses JSX which behind the scenes transforms to regular JS code.
  2. React is built upon components.
  3. Components are small building blocks of elements grouped together.
  4. Components are reusuable and has separation of concern.
  5. Each custom components made by us can be used with self-closing tags or regular closing tags format.
  6. React uses declarative approach rather than imperative as we do mainly in javascript.