Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 

13 řádky
272 B

  1. import {createAnchorLinks} from "./AnchorLinksComponent";
  2. export default {
  3. title: 'Components/Anchor Links',
  4. args: {},
  5. }
  6. const Template = ({...args}) => {
  7. return createAnchorLinks({...args});
  8. };
  9. export const AnchorLinks = Template.bind({});
  10. AnchorLinks.args = {};