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.
 
 
 
 

18 lines
338 B

  1. import {createSocialSection} from "./SocialComponent";
  2. export default {
  3. title: 'Sections/Social',
  4. parameters: {
  5. layout: 'fullscreen',
  6. },
  7. args: {
  8. visitUs: 'Besuchen Sie uns auf:'
  9. }
  10. }
  11. const Template = ({...args}) => {
  12. return createSocialSection({...args});
  13. }
  14. export const Social = Template.bind({});
  15. Social.args = {};