import { Link, NavLink } from 'react-router-dom'; import { twMerge } from 'tailwind-merge'; import { ActiveAccount } from '@shared/accounts/active'; import { DepotIcon, HomeIcon, NwcIcon, PlusIcon, RelayIcon, SearchIcon, } from '@shared/icons'; export function Navigation() { return (
{({ isActive }) => ( <>
Home
)}
{({ isActive }) => ( <>
Relays
)}
{({ isActive }) => ( <>
Depot
)}
{({ isActive }) => ( <>
Wallet
)}
); }