Files
bun.sh/packages/bun-vscode/example/bake-test/pages/index.tsx
2025-05-12 17:12:17 -07:00

17 lines
288 B
TypeScript

"use client";
import { useState } from "react";
function App() {
const [count, setCount] = useState(null);
return (
<>
{/* @ts-expect-error */}
<button onClick={() => setCount(count => count.charAt(0))}>count is {count}</button>
</>
);
}
export default App;