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ů.
 
 
 
 

18 řádky
374 B

  1. import {createParticipationListPage} from "./ParticipationListPage";
  2. export default {
  3. title: 'Pages/Participation List Page',
  4. parameters: {
  5. layout: 'fullscreen',
  6. },
  7. argTypes: {
  8. },
  9. }
  10. const Template = ({...args}) => {
  11. return createParticipationListPage({...args});
  12. };
  13. export const ParticipationListPage = Template.bind({});
  14. ParticipationListPage.args = {};