mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 20:10:58 +00:00
11 lines
340 B
JavaScript
11 lines
340 B
JavaScript
'use client';
|
|
import { readValue, createStorage } from './create-storage.mjs';
|
|
|
|
function useLocalStorage(props) {
|
|
return createStorage("localStorage", "use-local-storage")(props);
|
|
}
|
|
const readLocalStorageValue = readValue("localStorage");
|
|
|
|
export { readLocalStorageValue, useLocalStorage };
|
|
//# sourceMappingURL=use-local-storage.mjs.map
|