Update introduction.md (#3045)

This commit is contained in:
Shashikant Yadav 2025-03-12 16:58:00 +05:30 committed by GitHub
parent f85898fdbe
commit 681036c319
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -62,7 +62,7 @@ will re-render when that state changes.
```jsx
function BearCounter() {
const bears = useStore((state) => state.bears)
return <h1>{bears} around here...</h1>
return <h1>{bears} bears around here...</h1>
}
function Controls() {