feat: add analytics

This commit is contained in:
Yidadaa
2023-03-14 00:27:45 +08:00
parent 5c70456e18
commit 76f851bfa6
3 changed files with 13 additions and 1 deletions

View File

@@ -1,5 +1,11 @@
import { Home } from "./components/home";
import { Analytics } from "@vercel/analytics/react";
export default function App() {
return <Home />;
return (
<>
<Home />
<Analytics />
</>
);
}