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
475 B
TypeScript
13 lines
475 B
TypeScript
import { EstimateForm } from 'tradein-mvp-frontend';
|
|
|
|
/** Шаг 1/1 — параметры квартиры (адрес + площадь/комнаты/этаж/тип/ремонт +
|
|
* свёрнутый CRM-блок). Полное «спокойное» состояние: не считает, без ошибок. */
|
|
export const Default = () => (
|
|
<EstimateForm
|
|
onSubmit={() => {}}
|
|
isPending={false}
|
|
error={null}
|
|
remaining={12}
|
|
limit={15}
|
|
/>
|
|
);
|