Claire
React is a JavaScript library for building user interfaces. React is used to build single-page applications. React allows us to create reusable UI components.
Claire
Next.js is an open-source development framework built on top of Node.js enabling React based web applications functionalities such as server-side rendering and generating static websites.
Claire
By default, JavaScript will use the browser's time zone and display a date as a full text string: Mon Feb 28 2022 22:11:48 GMT-0800 (Pacific Standard Time)
Claire
Node.js is an open source server environment. Node.js allows you to run JavaScript on the server.
Claire
Git is a version control system. Git helps you keep track of code changes. Git is used to collaborate on code.
Claire
Hooks are reusable functions. When you have component logic that needs to be used by multiple components, we can extract that logic to a custom Hook. Custom Hooks start with "use". Example: useFetch.
Mar 01, 2022
Node.js TutorialMar 01, 2022
Git TutorialMar 02, 2022
React Custom Hooks