14 lines
351 B
TypeScript
14 lines
351 B
TypeScript
import Chats from '@components/columns/navigator/chats';
|
|
import Newsfeed from '@components/columns/navigator/newsfeed';
|
|
|
|
export default function NavigatorColumn() {
|
|
return (
|
|
<div className="relative flex h-full flex-col gap-1 overflow-hidden pt-4">
|
|
{/* Newsfeed */}
|
|
<Newsfeed />
|
|
{/* Chats */}
|
|
<Chats />
|
|
</div>
|
|
);
|
|
}
|