chore: quick create route

This commit is contained in:
jialin
2026-02-12 12:20:05 +08:00
parent b21fe0ac4c
commit 07664b5f22
21 changed files with 202 additions and 47 deletions
+6
View File
@@ -0,0 +1,6 @@
import { atom } from 'jotai';
export const registerRouteConfigAtom = atom<Record<string, any>>({
initialValues: null,
create: false
});