I created a component in react that displays table.
The process is executed in this way:
Enter api url and hit Load Button -->
Select the functionalities you want with the table (like Sortable columns, resizable columns, search implementation, responsiveness, row reorder, download data, multiselect columns and draggable columns) -->
Click Load Table button to load table.
The entire process is happening but if i refresh the page, it starts from all over again. I have to re enter the api, select functionalities and load table. Is there any way that i can store the api and functionalities so that next time if i load the page it takes previous configuration.
Also if i call the component twice, at two different places in the same webpage. The configuration should be different for the other component. How can i implement that?