Files
kiss-translator/src/hooks/Sync.js
Gabe Yuan aa795e2731 dev......
2023-08-31 00:18:57 +08:00

12 lines
270 B
JavaScript

import { STOKEY_SYNC, DEFAULT_SYNC } from "../config";
import { useStorage } from "./Storage";
/**
* sync hook
* @returns
*/
export function useSync() {
const { data, update } = useStorage(STOKEY_SYNC, DEFAULT_SYNC);
return { sync: data, updateSync: update };
}