dan
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
beta/src/content/learn/lifecycle-of-reactive-effects.md
|
@ -517,7 +517,7 @@ export default function App() { |
|
|
{show ? 'Close chat' : 'Open chat'} |
|
|
{show ? 'Close chat' : 'Open chat'} |
|
|
</button> |
|
|
</button> |
|
|
{show && <hr />} |
|
|
{show && <hr />} |
|
|
{show && <ChatRoom roomId={roomId} />} |
|
|
{show && <ChatRoom />} |
|
|
</> |
|
|
</> |
|
|
); |
|
|
); |
|
|
} |
|
|
} |
|
|