React Expense Tracker App from following another tutorial from course of Maximillian Academind.
- React uses JSX which behind the scenes transforms to regular JS code.
- React is built upon components.
- Components are small building blocks of elements grouped together.
- Components are reusuable and has separation of concern.
- Each custom components made by us can be used with self-closing tags or regular closing tags format.
- React uses declarative approach rather than imperative as we do mainly in javascript.