10 lines
243 B
TypeScript
10 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;
|