Function createLocalStore
createLocalStore<T>( key: string,): { get: () => null | "" | T; initialValue: null | "" | T; remove: () => void; set: (value: T) => void;} Returns {
get: () => null | "" | T;
initialValue: null | "" | T;
remove: () => void;
set: (value: T) => void;
}