fmt(js): `npm run fix` on merge (#83409)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
hermes-seaeye[bot] 2026-08-10 19:40:25 +00:00 committed by GitHub
parent 5b8cbd5ef2
commit 1b5da4aacf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 1 deletions

View File

@ -29,7 +29,11 @@ describe('Slot contribution render boundary', () => {
const [count, setCount] = useState(10)
const [suffix] = useState('ready')
return <button onClick={() => setCount(value => value + 1)}>reloaded:{count}:{suffix}</button>
return (
<button onClick={() => setCount(value => value + 1)}>
reloaded:{count}:{suffix}
</button>
)
}
render(<Slot area={area} />)