aboutsummaryrefslogtreecommitdiff
path: root/src/components/hooks/context/useLink.ts
blob: 8766bbb648bfcd45b7b402eb4cedfe8639a4a41a (plain) (blame)
1
2
3
4
5
6
import { useContext } from 'react';
import { LinkContext } from '@/app/(main)/links/LinkProvider';

export function useLink() {
  return useContext(LinkContext);
}