export default function put(key: string, value: T, prefix = "") { localStorage[`${prefix}${key}`] = JSON.stringify(value); }