Skip to content

Instantly share code, notes, and snippets.

@o-az
Created October 28, 2024 00:44
Show Gist options
  • Save o-az/be61647a5441b669b6cba7ce6fc6a7e8 to your computer and use it in GitHub Desktop.
Save o-az/be61647a5441b669b6cba7ce6fc6a7e8 to your computer and use it in GitHub Desktop.
export const reactiveQueryArgs = <T>(cb: () => T) => {
const store = writable<T>();
$effect.pre(() => {
store.set(cb());
});
return store;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment