// D2 트렌딩 위젯 — "지금 뜨는 종목" (글수·언급량 랭킹). SSR 프레젠테이션. // 서버 컴포넌트: rows prop 을 상위(page)에서 fetchTrendingStocks 로 주입. import '@/app/styles/community.scss'; import Link from 'next/link'; import { TrendingUp } from 'lucide-react'; import { changeDirection, changeSymbol, formatNumber } from '@/lib/utils/stock'; import { TrendingStockRow } from '@/types/community'; interface Props { rows: TrendingStockRow[]; limit?: number; } export default function TrendingStocks({ rows, limit = 10 }: Props) { const list = rows.slice(0, limit); return (
{list.length === 0 ? (

집계된 종목이 없습니다.

) : ( )}
); }