Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Living wiki of UI design patterns and best practices built with Fumadocs, Next.js, and Base UI components.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
rules/ux-teslers-complexity.md
1---2title: Move Complexity, Don't Hide It3impact: MEDIUM4tags: ux, teslers, complexity, simplicity5---67## Move Complexity, Don't Hide It89Every system has irreducible complexity. The question is who handles it — the user or the system.1011**Incorrect (complexity pushed to user):**1213```tsx14<input15type="text"16placeholder="Enter date as YYYY-MM-DDTHH:mm:ss.sssZ"17/>18```1920**Correct (system absorbs complexity):**2122```tsx23<DatePicker24onChange={(date) => setDate(date.toISOString())}25/>26```2728Reference: [Tesler's Law](https://lawsofux.com/teslers-law/)29