Skip to content

Instantly share code, notes, and snippets.

@daedalius
Created April 13, 2020 22:35
Show Gist options
  • Save daedalius/51f59bcc78b9ab019265a37693ea41f2 to your computer and use it in GitHub Desktop.
Save daedalius/51f59bcc78b9ab019265a37693ea41f2 to your computer and use it in GitHub Desktop.
Cypress + Storybook. #6
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