import { metrics } from 'config'; import { getAsyncItem, setAsyncItem } from './asyncStorage'; const { STORAGE } = metrics; export const setLanguage = async (lng: string) => setAsyncItem(STORAGE.LANGUAGE_KEY, lng); export const getLanguage = async () => getAsyncItem(STORAGE.LANGUAGE_KEY);