logoSentry.stories.js 233 B

12345678910111213
  1. import LogoSentry from 'sentry/components/logoSentry';
  2. export default {
  3. title: 'Assets/Logo',
  4. component: LogoSentry,
  5. };
  6. export const Logo = () => (
  7. <div>
  8. <LogoSentry />
  9. <LogoSentry showWordmark={false} />
  10. </div>
  11. );