onboardingPanel.stories.js 465 B

1234567891011121314151617181920
  1. import React from 'react';
  2. import OnboardingPanel from 'app/components/onboardingPanel';
  3. import {IconFire} from 'app/icons';
  4. export default {
  5. title: 'Layouts/OnboardingPanel',
  6. component: OnboardingPanel,
  7. };
  8. export const Default = () => {
  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.storyName = 'OnboardingPanel';