Hello and thank you in advance for your help.
I'm a reactjs beginner.
I would like to use this reactjs tool :
https://github.com/STRML/react-gr...
For further actions, you may consider blocking this person and/or reporting abuse
It really depends on what you want to do.
You cloned the source code of that project, which you only want to do if you want to develop the source code of react-grid-layout yourself.
The thing you are looking for is how to use react-grid-layout in your own react application. So if you have not already done that, you should create a new react app on your local machine, the simplest one to get started is the project called "create-react-app".
So to create a new React app:
Here it created all the files to get you started. You now want to install the react-grid-layout package from NPM to add it to your new app and then start your app:
Now you need to create a component to use the react-grid-layout, follow the instructions at the usage section.
When you are finished developing, you create a production version of your React app using:
You can then deploy the files in the
/builddirectory on your server.Hello Edwin,
Thank you very much for your reply, that's clear.
Enjoy your sunday.