re-add useTransition to router

This commit is contained in:
jeffvli
2026-04-05 21:54:07 -07:00
parent 56cd50e0ed
commit c8e8f58cce
19 changed files with 375 additions and 300 deletions
+5
View File
@@ -0,0 +1,5 @@
import { startTransition } from 'react';
export function runInUrlTransition(update: () => void): void {
startTransition(update);
}