UNPKG

svix-react

Version:

React components for using Svix in your dashboard.

15 lines (14 loc) 386 B
import * as React from "react"; import { Svix, SvixOptions } from "svix"; interface SvixProviderProps { token: string; options?: SvixOptions; appId: string; children: React.ReactNode; } export default function SvixProvider(props: SvixProviderProps): JSX.Element; export declare const SvixContext: React.Context<{ svix: Svix; appId: string; } | null>; export {};