mirror of
https://github.com/legop3/MultiRoombaRover.git
synced 2026-09-17 01:50:47 -04:00
11 lines
346 B
JavaScript
11 lines
346 B
JavaScript
import { useSettingsNamespace } from '../settings/index.js';
|
|
|
|
export function useHudMapSetting() {
|
|
const { value, save } = useSettingsNamespace('page', { hudMapDesktop: false });
|
|
const enabled = Boolean(value?.hudMapDesktop);
|
|
const setEnabled = (next) => {
|
|
save({ hudMapDesktop: Boolean(next) });
|
|
};
|
|
return [enabled, setEnabled];
|
|
}
|