Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

18 строки
297 B

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