jonbio/components/ClientComponent.tsx

14 lines
274 B
TypeScript
Raw Normal View History

2023-07-08 15:23:25 +08:00
import { useState } from 'react'
export default function ClientComponent() {
const [count, setCount] = useState(0)
return (
<>
<h1>Client Component</h1>
<p>Count: {count}</p>
<button onClick={() => setCount(count + 1)}>Inc</button>
</>
)
}