Skip to content

Commit

Permalink
Update examples: counter.tsx - Don't need empty space (#52576)
Browse files Browse the repository at this point in the history
Don't need empty space
  • Loading branch information
starunaway committed Jul 12, 2023
1 parent 2b98f77 commit 3c3f50d
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -13,11 +13,11 @@ export default function Counter({
const [count, setCount] = useState(0)
return (
<p>
This compoment is rendered on client:{' '}
This compoment is rendered on client:
<button onClick={() => setCount((n) => n - 1)}>
{dictionary.decrement}
</button>{' '}
{count}{' '}
</button>
{count}
<button onClick={() => setCount((n) => n + 1)}>
{dictionary.increment}
</button>
Expand Down

0 comments on commit 3c3f50d

Please sign in to comment.