()
| 102 | * Settings are shared across all components that use this composable. |
| 103 | */ |
| 104 | export function useSettings() { |
| 105 | if (!settingsRef) { |
| 106 | settingsRef = useLocalStorage<AppSettings>(STORAGE_KEY, DEFAULT_SETTINGS, { |
| 107 | mergeDefaults: true, |
| 108 | }) |
| 109 | } |
| 110 | |
| 111 | return { |
| 112 | settings: settingsRef, |
| 113 | } |
| 114 | } |
| 115 | |
| 116 | /** |
| 117 | * Composable for accessing just the relative dates setting. |
no outgoing calls
no test coverage detected