mirror of
https://github.com/AmanTahiliani/box-box.git
synced 2026-08-07 11:54:59 -04:00
17 lines
371 B
TypeScript
17 lines
371 B
TypeScript
import { Link } from '@tanstack/react-router'
|
|
|
|
export function Nav() {
|
|
return (
|
|
<nav className="app-nav">
|
|
<Link to="/" className="nav-logo">
|
|
box<em>-</em>box
|
|
</Link>
|
|
<div className="nav-links">
|
|
<Link to="/race-hub" search={{}} activeProps={{ className: 'active' }}>
|
|
Race Hub
|
|
</Link>
|
|
</div>
|
|
</nav>
|
|
)
|
|
}
|