We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64264f1 commit 731f382Copy full SHA for 731f382
src/App.tsx
@@ -1,6 +1,6 @@
1
import React from 'react';
2
import { BrowserRouter, Routes, Route } from 'react-router-dom';
3
-import { SpeedInsights } from '@vercel/speed-insights/next';
+import { Analytics } from '@vercel/analytics/react';
4
import Index from './pages/Index';
5
import About from './pages/About';
6
import Contact from './pages/Contact';
@@ -13,7 +13,7 @@ import NotFound from './pages/NotFound';
13
const App: React.FC = () => {
14
return (
15
<BrowserRouter>
16
- <SpeedInsights />
+ <Analytics />
17
<Routes>
18
<Route path="/" element={<Index />} />
19
<Route path="/about" element={<About />} />
0 commit comments