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.
 
 
 
 

21 lines
386 B

  1. import {createSuperlistSection} from "./SuperlistComponent";
  2. export default {
  3. title: 'Sections/Superlist',
  4. args: {
  5. }
  6. };
  7. const Template = ({...args}) => {
  8. return createSuperlistSection({...args});
  9. };
  10. export const Superlist = Template.bind({});
  11. Superlist.args = {};
  12. export const SuperlistCentered = Template.bind({});
  13. SuperlistCentered.args = {
  14. centered: true
  15. };