Select the types of activity you want to include in your feed.
1import { useContext } from 'react' 2import AppContext from '../components/AppContext.js' 3 4/** 5 * `useApp` is a React hook, which exposes a method to manually exit the app (unmount). 6 */ 7const useApp = () => useContext(AppContext) 8export default useApp