import ChannelsList from '@lume/app/channel/components/list'; import ChatsList from '@lume/app/chat/components/list'; import ActiveLink from '@lume/shared/activeLink'; import { Disclosure } from '@headlessui/react'; import { Bonfire, NavArrowUp, PeopleTag } from 'iconoir-react'; export default function Navigation() { return (
{/* Newsfeed */} {({ open }) => (

Newsfeed

Following Circle
)}
{/* Channels */} {({ open }) => (

Channels

)}
{/* Chats */} {({ open }) => (

Chats

)}
); }