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:
parent
5b8cbd5ef2
commit
1b5da4aacf
|
|
@ -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} />)
|
||||
|
|
|
|||
Loading…
Reference in New Issue