gendesign/.design-sync/previews/HouseInfoCard.tsx
bot-backend e70f5da82b
All checks were successful
CI / changes (pull_request) Successful in 7s
CI / backend-tests (pull_request) Has been skipped
CI / frontend-tests (pull_request) Has been skipped
CI / openapi-codegen-check (pull_request) Has been skipped
chore(design-sync): sync inputs for claude.ai/design trade-in DS
Imports tradein-mvp/frontend (38 components) to a claude.ai/design
design-system project. Synth-entry build (Next.js app, no dist):
- overrides/source-kit.mjs: process.env shim for browser IIFE
- preview-provider.tsx: seeded TanStack Query provider (mirrors the
  repo's offline ui-preview client) so fetch-coupled + auth-gated cards render
- previews/*.tsx: authored preview compositions (real fixture data)
- conventions.md: README header for the design agent
- config.json + NOTES.md: reproducible re-sync inputs
2026-06-27 14:40:50 +03:00

6 lines
443 B
TypeScript

import { HouseInfoCard } from 'tradein-mvp-frontend';
import { FIXTURE_HOUSES } from './_fixtures';
/** Карточка «Дом» — ближайший дом из выборки: адрес, рейтинг, параметры дома
* (год, этажность, тип, лифты, двор, застройщик). length>0 → не null. */
export const Default = () => <HouseInfoCard houses={FIXTURE_HOUSES} isLoading={false} />;