mirror of
https://github.com/aculix/vector-drawable-nextjs.git
synced 2025-12-06 06:08:24 +00:00
12 lines
223 B
JavaScript
12 lines
223 B
JavaScript
import '../styles/globals.css'
|
|
import { Analytics } from '@vercel/analytics/react';
|
|
|
|
function MyApp({ Component, pageProps }) {
|
|
return (<>
|
|
<Component {...pageProps} />
|
|
<Analytics />
|
|
</>)
|
|
}
|
|
|
|
export default MyApp
|