mirror of
https://github.com/NeonGamerBot-QK/saahild.com.git
synced 2025-06-18 08:10:08 +00:00
<!-- hint: follow the conventional commits look at CONTRIBUTING.md make sure this repo would take a PR. --> ## delete me
19 lines
710 B
TypeScript
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;
|