Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import * as React from 'react';
const NewTabStory = ({ children }) => {
if (window.location === window.parent.location) {
return children;
}
return (
<p>
This story should be{' '}
<a href={window.location.href} target="_blank" title="Open in new tab" rel="noreferrer">
opened in a new tab
</a>
.
</p>
);
};
export default NewTabStory;