mirror of
https://github.com/umami-software/umami.git
synced 2025-12-08 05:12:36 +01:00
6 lines
164 B
TypeScript
6 lines
164 B
TypeScript
import { LinkContext } from '@/app/(main)/links/LinkProvider';
|
|
import { useContext } from 'react';
|
|
|
|
export function useLink() {
|
|
return useContext(LinkContext);
|
|
}
|