logoSentry.stories.js 262 B

123456789101112131415
  1. import React from 'react';
  2. import LogoSentry from 'app/components/logoSentry';
  3. export default {
  4. title: 'Core/Style/Logo',
  5. component: LogoSentry,
  6. };
  7. export const Logo = () => (
  8. <div>
  9. <LogoSentry />
  10. <LogoSentry showWordmark={false} />
  11. </div>
  12. );