Bluesky app fork with some witchin' additions 馃挮
0
fork

Configure Feed

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

at main 17 lines 285 B view raw
1import {useMemo} from 'react' 2 3export function Provider({children}: {children: React.ReactNode}) { 4 return children 5} 6 7const noop = () => {} 8 9export function useHotkeysContext() { 10 return useMemo( 11 () => ({ 12 enableScope: noop, 13 disableScope: noop, 14 }), 15 [], 16 ) 17}