mirror of
https://github.com/Unleash/unleash.git
synced 2025-07-26 13:48:33 +02:00
7 lines
179 B
TypeScript
7 lines
179 B
TypeScript
import { createContext } from 'react';
|
|
import Plausible from 'plausible-tracker';
|
|
|
|
export const PlausibleContext = createContext<ReturnType<
|
|
typeof Plausible
|
|
> | null>(null);
|