mirror of
https://github.com/UA-Fediland/synapse-admin.git
synced 2025-03-30 16:44:55 +00:00
9 lines
243 B
TypeScript
9 lines
243 B
TypeScript
import { createContext, useContext } from "react";
|
|
|
|
interface AppContextType {
|
|
restrictBaseUrl: string | string[];
|
|
}
|
|
|
|
export const AppContext = createContext({});
|
|
|
|
export const useAppContext = () => useContext(AppContext) as AppContextType;
|