Add lang toggler

This commit is contained in:
2024-02-19 14:04:56 +01:00
parent 1cf7035449
commit 588eab0caf
14 changed files with 249 additions and 87 deletions
+9
View File
@@ -0,0 +1,9 @@
import { atom } from 'recoil';
export const langAtom = atom({
key: 'lang',
default: {
key: null as any,
config: null as any,
},
});