Created
April 13, 2020 22:35
-
-
Save daedalius/51f59bcc78b9ab019265a37693ea41f2 to your computer and use it in GitHub Desktop.
Cypress + Storybook. #6
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let setPopupTestWrapperState = null; | |
const PopupTestWrapper = ({ showed, win }) => { | |
const [isShown, setState] = React.useState(showed); | |
setPopupTestWrapperState = setState; | |
return <win.Popup showed={isShown} /> | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment