the claude code sourcemaps leaked march 31
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 8 lines 251 B view raw
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