You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

19 lines
305 B

  1. import {createBadge} from "./BadgeComponent";
  2. export default {
  3. title: 'Atoms/Badge',
  4. args: {
  5. count: 68,
  6. },
  7. argTypes: {
  8. count: {
  9. name: 'Anzahl',
  10. }
  11. }
  12. }
  13. const Template = ({...args}) => {
  14. return createBadge({...args});
  15. }
  16. export const Badge = Template.bind({});
  17. Badge.args = {};