Hi, I am new in angular and i have to create dynamic dashboard. which user can configure it self and it configured component position store in database for display same when he login next time. I have seen some drag and drop component sample but that not define how to store changes in database using web API. Please provide suggestion for this
Matt Strom
Software Engineer, TypeScript ninja
If you were to use something like ngrx, Angular's counterpart to Redux, and to observe best practices for it, you can serialize your application state and then persist that to a backend server or local storage. Later on you can retrieve that state and rehydrate your app with the saved state.