You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

15 lines
305 B

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