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
13 lines
509 B
TypeScript
13 lines
509 B
TypeScript
import { HeroSummary } from 'tradein-mvp-frontend';
|
|
import { FIXTURE_ESTIMATE, FIXTURE_INPUT } from './_fixtures';
|
|
|
|
/** Секция 1 «Сводка» — медиана + достоверность CV + параметры объекта.
|
|
* Фото-аналог = плейсхолдер (фикстура офлайн, photo_url: null). */
|
|
export const Default = () => (
|
|
<HeroSummary
|
|
estimate={FIXTURE_ESTIMATE}
|
|
input={FIXTURE_INPUT}
|
|
onResubmit={() => {}}
|
|
isResubmitting={false}
|
|
/>
|
|
);
|