UNPKG

@shopgate/engage

Version:
11 lines (10 loc) 256 B
import { useContext } from 'react'; import AppContext from "../contexts/AppContext"; /** * Provides the properties of the app context. * @returns {Object} */ export function useApp() { const appContext = useContext(AppContext); return appContext; }