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
6 lines
449 B
TypeScript
6 lines
449 B
TypeScript
import { CianValuationCard } from 'tradein-mvp-frontend';
|
|
import { FIXTURE_ESTIMATE } from './_fixtures';
|
|
|
|
/** Компактный блок «Оценка Cian» — продажа 9.70 млн ₽ + аренда 42 000 ₽/мес,
|
|
* спарклайн за 6 мес и бейдж ↑3.2%. Узкий компонент (section, не full-width card). */
|
|
export const Default = () => <CianValuationCard data={FIXTURE_ESTIMATE.cian_valuation} />;
|