App Context

The AppContext is a higher-order component (HOC) that stores global objects and methods used throughout your application, such as:

The AppContext is located in /components/app

You can then use any of these methods anywhere in your application by importing the AppContext into your components.

import { useContext } from 'react';
import { AppContext } from '~/components/lib'

export function Profile(props){

  const context = useContext(AppContext);
  context.handleError(err);

}

Last updated