externalLink.stories.js 489 B

12345678910111213141516171819202122
  1. import React from 'react';
  2. import ExternalLink from 'app/components/links/externalLink';
  3. export default {
  4. title: 'Core/Links/ExternalLink',
  5. component: ExternalLink,
  6. };
  7. export const Default = () => (
  8. <ExternalLink href="https://www.sentry.io">Sentry</ExternalLink>
  9. );
  10. Default.storyName = 'ExternalLink';
  11. Default.parameters = {
  12. docs: {
  13. description: {
  14. story:
  15. 'A normal anchor that opens URL in a new tab accounting for \'target="_blank"\' vulns',
  16. },
  17. },
  18. };