Browse Source

Fix a mistake

main
dan 2 years ago
committed by GitHub
parent
commit
a6c164d66a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      beta/src/content/learn/lifecycle-of-reactive-effects.md

2
beta/src/content/learn/lifecycle-of-reactive-effects.md

@ -517,7 +517,7 @@ export default function App() {
{show ? 'Close chat' : 'Open chat'}
</button>
{show && <hr />}
{show && <ChatRoom roomId={roomId} />}
{show && <ChatRoom />}
</>
);
}

Loading…
Cancel
Save