14 lines
274 B
TypeScript
14 lines
274 B
TypeScript
|
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>
|
||
|
</>
|
||
|
)
|
||
|
}
|