You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the app relies on higher-order components (HOCs) and custom actions to perform tasks. We want to change this so that the app just relies on hooks and the Vanellus functionality.
Currently there already are hooks that load the user, provider and mediator instances. So the user dashboard e.g. loads
// get the current user objectconstuser=useUser()// load appointmentsuseEffect(()=>{user.getAppointmentsById(...)})// display data from the user objectreturn<div>{user.secret}</div>
The text was updated successfully, but these errors were encountered:
Currently the app relies on higher-order components (HOCs) and custom actions to perform tasks. We want to change this so that the app just relies on hooks and the Vanellus functionality.
Currently there already are hooks that load the user, provider and mediator instances. So the user dashboard e.g. loads
The text was updated successfully, but these errors were encountered: