mirror of
https://github.com/documenso/documenso.git
synced 2025-11-23 05:01:54 +10:00
19 lines
423 B
TypeScript
19 lines
423 B
TypeScript
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
import React from 'react';
|
|
|
|
import { PlausibleProvider } from '../providers/plausible';
|
|
import '../styles.css';
|
|
|
|
export type AppProps = {
|
|
Component: React.ComponentType<any>;
|
|
pageProps: any;
|
|
};
|
|
|
|
export default function App({ Component, pageProps }: AppProps) {
|
|
return (
|
|
<PlausibleProvider>
|
|
<Component {...pageProps} />
|
|
</PlausibleProvider>
|
|
);
|
|
}
|