Posts by Frederico Breno • 9 points
2 posts
-
0
votes2
answers148
viewsA: how to give target="_Blank" on a button
You must use the property target on the tag a. Try to use like this: <a href="sobre.html" target="_blank" />
-
0
votes2
answers626
viewsA: Reset React-Select (Unform) after Ubmit
Add these lines to registerField of its React-select component. clearValue: (ref: any) => { ref.select.clearValue(); } When the clear is called, either by:…