repoLabel.stories.js 221 B

1234567891011
  1. import RepoLabel from 'sentry/components/repoLabel';
  2. export default {
  3. title: 'Components/Tags/Repo Label',
  4. };
  5. export const Default = () => {
  6. return <RepoLabel>prod</RepoLabel>;
  7. };
  8. Default.storyName = 'Repo Label';