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
constA=createQueryAtom({key: 'a',default: 0,});A.get()// 0A.set(v=>v+1)// Will update query parameter "a" to be 1// Page reload...location.search// "?a=1"A.get()// 1A.set(2);// Page reload...location.search// "?a=2"A.get()// 2A.set(0);// Page reload...location.search// ""A.get()// 0// "a" is removed from query since its equal to its default value// For creating links that update the page stateA.urlWhenSet(4);// www.domain.com?a=4
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: