11 lines
248 B
Plaintext
11 lines
248 B
Plaintext
|
|
import { PlausibleProvider } from '../providers/plausible.tsx';
|
||
|
|
import '../styles.css';
|
||
|
|
|
||
|
|
export default function App({ Component, pageProps }) {
|
||
|
|
return (
|
||
|
|
<PlausibleProvider>
|
||
|
|
<Component {...pageProps} />;
|
||
|
|
</PlausibleProvider>
|
||
|
|
);
|
||
|
|
}
|