Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

23 wiersze
483 B

  1. import {createParticipationStartPage} from "./ParticipationStartPage";
  2. export default {
  3. title: 'Pages/Participation Start Page',
  4. parameters: {
  5. layout: 'fullscreen',
  6. },
  7. args: {
  8. stageWithImage: false,
  9. },
  10. argTypes: {
  11. stageWithImage: {
  12. name: 'Bild in der Bühne',
  13. }
  14. },
  15. }
  16. const Template = ({...args}) => {
  17. return createParticipationStartPage({...args});
  18. };
  19. export const ParticipationStartPage = Template.bind({});
  20. ParticipationStartPage.args = {};