Add Contact support button (#45)

This commit is contained in:
Aine
2024-09-25 19:09:58 +03:00
committed by GitHub
parent 52a2f1c936
commit bb53d53692
7 changed files with 43 additions and 2 deletions

View File

@@ -3,6 +3,7 @@ import { createContext, useContext } from "react";
interface AppContextType {
restrictBaseUrl: string | string[];
asManagedUsers: string[];
supportURL: string;
}
export const AppContext = createContext({});