diff --git a/.gitignore b/.gitignore index a12bfb1..c1a09ec 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,9 @@ /node_modules /.pnp .pnp.js +.cache +dist +package-lock.json yarn.lock # testing diff --git a/src/App.tsx b/src/App.tsx index a1a3e90..07f0ee3 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,12 +1,11 @@ import { BrowserRouter as Router, Route, Routes } from 'react-router-dom'; + import About from './views/About/About'; import Header from './components/Header'; import Home from './views/Home/Home'; import Gaming from './views/Gaming/Gaming'; import Esports from './views/Esports/Esports'; import Technology from './views/Technology/Technology'; - - function App() { return ( @@ -21,6 +20,7 @@ function App() { } /> +