Share yourVS Code
coding threads
Stop screenshotting your VS Code and Claude chats. Turn your local AI conversations into shareable, interactive links for your team.
$npm install -g @athrd/cli
Claude Code/React Counter Component
AT
Create a simple counter component using React and Lucide icons.
CL
I need to create a React component that implements a counter. I'll use the `useState` hook for the count value and `Plus` and `Minus` icons from `lucide-react` for the buttons.
npm install lucide-react
src/components/Counter.tsx
+24-0
+
import { useState } from "react";+
import { Minus, Plus } from "lucide-react";+
+
export function Counter() {+
const [count, setCount] = useState(0);