#!/usr/bin/env npx tsx /** * Sample app demonstrating how to update a counter WITHOUT repainting the whole screen. * * The key insight: In Ink (React for terminal), when state changes in a component, * it re-renders that component and all its children. To avoid full screen repaints, * isolate the rapidly-updating state into its own small component. * * Run with: npx tsx src/sample-counter-app.tsx */ export {}; //# sourceMappingURL=sample-counter-app.d.ts.map