import {createContext} from "react"; export interface GlobalData { } const Data: GlobalData = {} export const GlobalContext = createContext(Data);