mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-20 00:08:02 +01: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);
|