You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Notice that I intentionally left out arrow function like that, now you know what's next there right? The moment you type in the next character in the arrow function which is >, you'll get:
<TestComponent onDone={() =></div>} />
The same thing also happens with these:
<TestComponentonDone={()=}
<TestComponenttest={()=}/>
These works as expected:
<TestComponentonDone={()=
<TestComponenttest={()=/>
The text was updated successfully, but these errors were encountered:
Enter in the following code:
Notice that I intentionally left out arrow function like that, now you know what's next there right? The moment you type in the next character in the arrow function which is
>
, you'll get:The same thing also happens with these:
These works as expected:
The text was updated successfully, but these errors were encountered: