Update components

This commit is contained in:
Ben Grant 2022-08-16 14:29:41 +10:00
parent 4382f559f3
commit a67aee24dc
95 changed files with 3901 additions and 12032 deletions

View file

@ -0,0 +1,8 @@
import create from 'zustand'
const useLocaleUpdateStore = create(set => ({
locale: 'en',
setLocale: locale => set({ locale }),
}))
export default useLocaleUpdateStore