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 line
408 B

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