mirror of
https://github.com/UA-Fediland/synapse-admin.git
synced 2025-02-10 13:30:43 +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;
|