import { Link, NavLink } from 'react-router-dom'; import { twMerge } from 'tailwind-merge'; import { ActiveAccount } from '@shared/accounts/active'; import { ComposerModal } from '@shared/composer'; import { ChatsIcon, CommunityIcon, ExploreIcon, HomeIcon, NwcIcon, RelayIcon, } from '@shared/icons'; export function Navigation() { return (
{({ isActive }) => ( <>
Home
)}
{({ isActive }) => ( <>
Chats
)}
{({ isActive }) => ( <>
Groups
)}
{({ isActive }) => ( <>
Relays
)}
{({ isActive }) => ( <>
Explore
)}
); }