import { Config } from '../interfaces'; export const storeUIConfig = ( key: K, config: Config ) => { localStorage.setItem(key, `${config[key]}`); };