10 lines
140 B
TypeScript
10 lines
140 B
TypeScript
import { atom } from 'recoil';
|
|
|
|
export const langAtom = atom({
|
|
key: 'lang',
|
|
default: {
|
|
key: null as any,
|
|
config: null as any,
|
|
},
|
|
});
|