mirror of
https://github.com/documenso/documenso
synced 2026-05-02 18:37:18 +00:00
Adds support for creating documents and templates using our embed components. Support is super primitive at the moment and is being polished.
11 lines
324 B
TypeScript
11 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>;
|
|
};
|