Untitled
unknown
javascript
3 years ago
612 B
8
Indexable
import React from 'react'
import { Link } from 'react-router-dom'
import "../styles/Navbar.css"
function Navbar() {
return <div className="navbar">
<div className='links'>
<Link to="/tvota" onClick={() => {window.location.href="/tvota"}} >Tvota</Link>
<Link to="/thule" onClick={() => {window.location.href="/thule"}} >Thule</Link>
<Link to="/chat" onClick={() => {window.location.href="/chat"}} >Chat</Link>
<Link to="/contact" onClick={() => {window.location.href="/contact"}} >Contact</Link>
</div>
</div>
}
export default NavbarEditor is loading...