repoLabel.stories.js 236 B

12345678910111213
  1. import React from 'react';
  2. import RepoLabel from 'app/components/repoLabel';
  3. export default {
  4. title: 'Core/Tags/RepoLabel',
  5. };
  6. export const Default = () => {
  7. return <RepoLabel>prod</RepoLabel>;
  8. };
  9. Default.storyName = 'default';