import React from 'react'; import { Routes, Route } from 'react-router-dom'; import Home from './pages/Home'; import Blog from "./pages/Blog"; import SingleBlog from "./pages/SingleBlog"; import Navbar from "./components/navbar/Navbar"; import Hero from "./components/hero/Hero"; import AboutMe from "./components/about-me/AboutMe"; import Contact from "./components/contact/Contact"; import Hobbies from "./components/hobbies/Hobbies"; import Projects from "./components/projects/Projects"; const NavBarView = (props: {children: any}) => { return (
{props.children}
) } const Main = () => { return (
} path='/'/> } path='/home'/> } path='/about'/> } path='/contact'/> } path='/hobbies'/> } path='/projects'/> } path='/blogs'/> } path='/blog'/>
); } export default Main;