mirror of
https://github.com/documenso/documenso.git
synced 2025-11-10 04:22:32 +10:00
Adds support for creating documents and templates using our embed components. Support is super primitive at the moment and is being polished.
12 lines
324 B
TypeScript
12 lines
324 B
TypeScript
import React from 'react';
|
|
|
|
import NextPlausibleProvider from 'next-plausible';
|
|
|
|
export type PlausibleProviderProps = {
|
|
children: React.ReactNode;
|
|
};
|
|
|
|
export const PlausibleProvider = ({ children }: PlausibleProviderProps) => {
|
|
return <NextPlausibleProvider domain="documenso.com">{children}</NextPlausibleProvider>;
|
|
};
|