Skip to content

Commit

Permalink
Update separating-events-from-effects.md
Browse files Browse the repository at this point in the history
  • Loading branch information
alioguzhan authored May 20, 2024
1 parent 790b491 commit dfdc1c8
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src/content/learn/separating-events-from-effects.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,7 @@ function ChatRoom({ roomId }) {
return (
<>
<input value={message} onChange={e => setMessage(e.target.value)} />
<<<<<<< HEAD
<button onClick={handleSendClick}>Gönder</button>;
=======
<button onClick={handleSendClick}>Send</button>
>>>>>>> 9967ded394d85af74e0ecdbf00feeb7921a28142
<button onClick={handleSendClick}>Gönder</button>
</>
);
}
Expand Down Expand Up @@ -1847,4 +1843,4 @@ Bu, oda değiştirdiğinizde önceden planlanmış (ancak henüz görüntülenme

</Solution>

</Challenges>
</Challenges>

0 comments on commit dfdc1c8

Please sign in to comment.