Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 

18 rindas
350 B

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