commandLine.stories.js 335 B

12345678910111213141516
  1. import React from 'react';
  2. import CommandLine from 'app/components/commandLine';
  3. export default {
  4. title: 'Utilities/CommandLine',
  5. args: {
  6. children: 'sentry devserver --workers',
  7. },
  8. };
  9. export const _CommandLine = ({children}) => {
  10. return <CommandLine>{children}</CommandLine>;
  11. };
  12. _CommandLine.storyName = 'CommandLine';