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.
 
 
 
 

20 lines
421 B

  1. import {createTileGrid} from "./TileGridComponent";
  2. import {TileGridData} from "./TileGridData";
  3. export default {
  4. title: 'Sections/Tile Grid',
  5. parameters: {
  6. layout: 'fullscreen',
  7. },
  8. args: {
  9. headline: 'Daten und Fakten auf einen Blick',
  10. tiles: TileGridData,
  11. }
  12. }
  13. const Template = ({...args}) => {
  14. return createTileGrid({...args});
  15. };
  16. export const TileGrid = Template.bind({});
  17. TileGrid.args = {};