import React from 'react'; import {withInfo} from '@storybook/addon-info'; import ExternalLink from 'app/components/links/externalLink'; export default { title: 'UI/Links/ExternalLink', }; export const Default = withInfo( 'A normal anchor that opens URL in a new tab accounting for \'target="_blank"\' vulns' )(() => Sentry); Default.story = { name: 'default', };