Pixel/link metrics pages.

This commit is contained in:
Mike Cao 2025-08-21 01:33:20 -07:00
parent 789b8b36d8
commit 8e766e2db7
42 changed files with 530 additions and 49 deletions

View file

@ -0,0 +1,6 @@
import { LinkContext } from '@/app/(main)/links/LinkProvider';
import { useContext } from 'react';
export function useLink() {
return useContext(LinkContext);
}

View file

@ -0,0 +1,6 @@
import { PixelContext } from '@/app/(main)/pixels/PixelProvider';
import { useContext } from 'react';
export function usePixel() {
return useContext(PixelContext);
}

View file

@ -0,0 +1,6 @@
import { TeamContext } from '@/app/(main)/teams/TeamProvider';
import { useContext } from 'react';
export function useTeam() {
return useContext(TeamContext);
}

View file

@ -0,0 +1,6 @@
import { WebsiteContext } from '@/app/(main)/websites/WebsiteProvider';
import { useContext } from 'react';
export function useWebsite() {
return useContext(WebsiteContext);
}