mirror of
https://github.com/learnhouse/docs.git
synced 2026-02-18 00:07:39 +01:00
8 lines
180 B
Plaintext
8 lines
180 B
Plaintext
import { Analytics } from '@vercel/analytics/react';
|
|
|
|
export default function App({ Component, pageProps }) {
|
|
return <>
|
|
<Component {...pageProps} />
|
|
<Analytics />
|
|
</>
|
|
} |