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
documentation for @solid-primitives/presence is missing an implementation for stores, to showcase it is possible. I just suggest adding a example that uses store. Since it only needs to wrap the store value in function. const { isVisible, isMounted } = createPresence((store.appState.addPanelOpen, { transitionDuration: 500, });
to: const { isVisible, isMounted } = createPresence(() => store.appState.addPanelOpen, { transitionDuration: 500, });
Suggest A Solution
described above
The text was updated successfully, but these errors were encountered:
Describe The Problem To Be Solved
documentation for @solid-primitives/presence is missing an implementation for stores, to showcase it is possible. I just suggest adding a example that uses store. Since it only needs to wrap the store value in function.
const { isVisible, isMounted } = createPresence((store.appState.addPanelOpen, { transitionDuration: 500, });
to:
const { isVisible, isMounted } = createPresence(() => store.appState.addPanelOpen, { transitionDuration: 500, });
Suggest A Solution
described above
The text was updated successfully, but these errors were encountered: