mirror of
https://github.com/timmypidashev/web.git
synced 2026-04-14 02:53:51 +00:00
12 lines
237 B
TypeScript
12 lines
237 B
TypeScript
import { Analytics } from "@vercel/analytics/react";
|
|
import { SpeedInsights } from "@vercel/speed-insights/react";
|
|
|
|
export default function VercelAnalytics() {
|
|
return (
|
|
<>
|
|
<Analytics />
|
|
<SpeedInsights />
|
|
</>
|
|
);
|
|
}
|