Nit: server actions can't be passed events (#7175)

This commit is contained in:
Ricky
2024-09-19 14:42:44 -04:00
committed by GitHub
parent 505c85db8c
commit 39abc60fce

View File

@@ -53,7 +53,7 @@ When React renders the `EmptyNote` Server Component, it will create a reference
export default function Button({onClick}) {
console.log(onClick);
// {$$typeof: Symbol.for("react.server.reference"), $$id: 'createNoteAction'}
return <button onClick={onClick}>Create Empty Note</button>
return <button onClick={() => onClick()}>Create Empty Note</button>
}
```