4 lines
167 B
TypeScript
4 lines
167 B
TypeScript
import { createContext, useContext } from "react";
|
|
|
|
export const AlwaysOnContext = createContext(false);
|
|
export const useAlwaysOn = () => useContext(AlwaysOnContext);
|