feat: add AlwaysOn context for reduced-refresh display mode

This commit is contained in:
cediackermann 2026-04-20 18:27:24 +02:00
parent 73bf363407
commit c141d5663a

View file

@ -0,0 +1,4 @@
import { createContext, useContext } from 'react';
export const AlwaysOnContext = createContext(false);
export const useAlwaysOn = () => useContext(AlwaysOnContext);