mirror of
https://github.com/documenso/documenso
synced 2026-04-21 21:37:18 +00:00
10 lines
247 B
Text
10 lines
247 B
Text
import { PlausibleProvider } from '../providers/plausible.tsx';
|
|
import '../styles.css';
|
|
|
|
export default function App({ Component, pageProps }) {
|
|
return (
|
|
<PlausibleProvider>
|
|
<Component {...pageProps} />
|
|
</PlausibleProvider>
|
|
);
|
|
}
|