Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 

16 rader
361 B

  1. import {DocumentListData} from "./DocumentListData";
  2. import {createDocumentList} from "./DocumentListComponent";
  3. export default {
  4. title: 'Components/Document List',
  5. args: {
  6. docs: DocumentListData,
  7. }
  8. }
  9. const Template = ({...args}) => {
  10. return createDocumentList({...args});
  11. };
  12. export const DocumentList = Template.bind({});
  13. DocumentList.args = {};