commandLine.stories.js 312 B

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