import { Card, Row, Col } from "../shared/layout"; import { TangledLogo } from "../shared/logo"; import { IssueStatusBadge } from "../shared/status-badge"; import { CardHeader } from "../shared/card-header"; import { LabelList } from "../shared/label-pill"; import { FooterStats } from "../shared/footer-stats"; import { TYPOGRAPHY } from "../shared/constants"; import type { IssueCardData } from "../../validation"; export function IssueCard(data: IssueCardData) { return (
{data.title}
); }