1 2 3 4 5 6
import { useContext } from 'react'; import { LinkContext } from '@/app/(main)/links/LinkProvider'; export function useLink() { return useContext(LinkContext); }