"use client"; import { Card } from "flowbite-react"; import Link from "next/link"; import { numberDeclension } from "#/api/utils"; export function ProfileActivity(props: { profile_id: number; commentCount: number; videoCount: number; collectionCount: number; friendsCount: number; }) { return (

Активность

{props.commentCount}{" "} {numberDeclension( props.commentCount, "комментарий", "комментария", "комментариев" )}

{props.videoCount} видео

{props.collectionCount}{" "} {numberDeclension( props.commentCount, "коллекция", "коллекции", "коллекций" )}

{props.friendsCount}{" "} {numberDeclension(props.commentCount, "друзей", "друга", "друзей")}

); }