Projects was ez actually

This commit is contained in:
Saahil dutta 2024-06-22 04:07:48 -04:00
parent 5a39355ca1
commit 9c9d645b4a
3 changed files with 114 additions and 0 deletions

View file

@ -7,6 +7,7 @@ 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 logo from './logo.svg';
// import './App.css';
@ -23,6 +24,7 @@ function App () {
<SkillSet />
<GithubStats />
</>} />
<Route path='#/projects' component={<Projects />} />
</HashRouter>
)
}