-
Beta Was this translation helpful? Give feedback.
Answered by
mpagels
Aug 23, 2022
Replies: 1 comment 3 replies
-
Du könntest in deinem Bsp: const useStore = create(set => ({
exercises : [], // or cards
routine: [],
addRoutine: id => {
// ...logic to find the id in the `exercises` array, and put this exercise then into the `routine` array
return [...routine, newRoutine]
}
}) Dein In deiner Page "Asana Routine" nutzt du dann die Liste |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
Mersag
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Du könntest in deinem
zustand
Store eine weitere Liste anlegen, die die Übungen speichert, die dann auf deiner Page "Asana Routine" angezeigt wird.Bsp:
Dein
Button
braucht dann nur noch dieid
deiner exercise und ruft beionClick
dieaddRoutine
Funktion aus demzustand
Store auf.In deiner Page "Asana Routine" nutzt du dann die Liste
routine
aus deinemzustand
Store, um die gespeicherten Routinen anzuzeigen.