import * as React from 'react'; const NewTabStory = ({ children }) => { if (window.location === window.parent.location) { return children; } return (

This story should be{' '} opened in a new tab .

); }; export default NewTabStory;