chore: udpate react, downshift and routing

This commit is contained in:
Rafael Taranto 2025-05-15 13:00:21 +01:00
parent 61285c9037
commit d9e570990c
30 changed files with 4131 additions and 2813 deletions

View file

@ -0,0 +1,8 @@
import { create } from 'zustand'
const useDirtyHandler = create(set => ({
isDirty: false,
setIsDirty: it => set({ isDirty: it }),
}))
export default useDirtyHandler