Hello Namirials 👋
Let me introduce myself, I'm Simone "guizzo" Gizzi, Senior Software Engineer at Algo AI, and today I'll be your guide on React 🤗
As with all technologies, there would be much to say and explore, but today we will focus on the core aspects of the library, in order to allow you to be operational as quickly as possible.
For the occasion I thought of preparing this repository; inside you will find an example application, very simple, which however highlights some of the peculiarities of the library, such as for example the management of the state of the components, the input props, the event handlers and an example of an http call to an external resource.
React clearly has much more to offer, but considering the time available for this session, I therefore preferred to focus on the aspects that I think are fundamental for working with this library nowadays.
First thing first, open a terminal session and clone this repo, like this:
$ git clone [email protected]:guizzo/react-hands-on.git
Once cloned, move inside the project folder:
$ cd react-hands-on
then install the project dependencies:
$ npm install
and finally, run the project to see it in your browser:
$ npm start