import {createParticipationStartPage} from "./ParticipationStartPage"; export default { title: 'Pages/Participation Start Page', parameters: { layout: 'fullscreen', }, args: { stageWithImage: false, }, argTypes: { stageWithImage: { name: 'Bild in der Bühne', } }, } const Template = ({...args}) => { return createParticipationStartPage({...args}); }; export const ParticipationStartPage = Template.bind({}); ParticipationStartPage.args = {};