saahildcom/src/App.tsx
Neon 4cdc45eb88
Update App.tsx (#17)
<!--
hint: follow the conventional commits
look at CONTRIBUTING.md
make sure this repo would take a PR.
-->

## delete me
2025-06-17 19:49:10 -04:00

19 lines
710 B
TypeScript

import React from "react";
import Main from "./components/main";
import Navbar from "./components/navbar";
import InfogramBelowMain from "./components/infobelowmain";
import { HashRouter } from "./components/HashRouter";
import Route from "./components/HashRouter/Route";
//import AboutPage from "./components/AboutPage";
//import SkillSet from "./components/AboutPage/SkillSet";
//import GithubStats from "./components/AboutPage/Github";
//import Projects from "./components/Projects";
import Page404 from "./components/static/404";
//import ContactPage from "./components/ContactPage";
import ReWork from "./components/ReWork";
function App({ analytics }: any) {
return <ReWork />;
}
export default App;