poker-chips-helper/util/context.ts
2025-03-02 16:21:33 -08:00

14 lines
262 B
TypeScript

import React, { createContext } from "react";
export interface IAppContext {
showSettings: boolean;
}
const defaultContext: IAppContext = {
showSettings: false,
};
const AppContext = createContext<IAppContext>(defaultContext);
export default AppContext;