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 regels
389 B

  1. import {createQuickFacts} from "./QuickFactsComponent";
  2. import {QuickFactsData} from "./QuickFactsData";
  3. export default {
  4. title: 'Sections/Quick Facts',
  5. args: {
  6. headline: 'Quick Facts',
  7. items: QuickFactsData,
  8. },
  9. argTypes: {
  10. }
  11. }
  12. const Template = ({...args}) => {
  13. return createQuickFacts({...args});
  14. }
  15. export const QuickFacts = Template.bind({});
  16. QuickFacts.args = {};