import React from 'react'; export interface GarfishContextType { MApp: React.FC; apps: Record>; } const GarfishContext = React.createContext(null as any); const GarfishProvider = GarfishContext.Provider; export { GarfishContext, GarfishProvider };