onboardingPanel.stories.js 515 B

12345678910111213141516171819202122
  1. import React from 'react';
  2. import {withInfo} from '@storybook/addon-info';
  3. import {IconFire} from 'app/icons';
  4. import OnboardingPanel from 'app/components/onboardingPanel';
  5. export default {
  6. title: 'UI/OnboardingPanel',
  7. };
  8. export const Default = withInfo('Panel with icon image.')(() => {
  9. return (
  10. <OnboardingPanel image={<IconFire size="200px" />}>
  11. <h3>A title</h3>
  12. <p>Some content to show in the onboarding state.</p>
  13. </OnboardingPanel>
  14. );
  15. });
  16. Default.story = {
  17. name: 'default',
  18. };