Skip to content
Snippets Groups Projects
Select Git revision
  • 6350e612a29baf898b3d1220d0da4a71da447254
  • main default protected
  • release
  • 0.21.0
  • 0.20.0
  • 0.19.0
  • 0.18.0
  • 0.17.0
  • 0.16.0
  • 0.15.0
  • 0.14.0
  • 0.13.0
  • 0.11.0
  • 0.10.0
  • 0.9.0
  • 0.8.0
  • 0.7.0
  • 0.6.0
  • 0.5.0
  • 0.4.2
  • 0.4.1
  • 0.4.0
  • 0.3.0
23 results

pom.xml

Blame
  • heading.stories.ts 499 B
    import { type Meta, type StoryObj } from '@storybook/angular';
    
    const meta: Meta = {
      title: 'Typography/Heading',
      excludeStories: /.*Data$/,
      tags: ['autodocs'],
      parameters: {
        docs: {
          description: {
            component: 'These are styles for headings (see code)',
          },
        },
      },
    };
    
    export default meta;
    type Story = StoryObj;
    
    export const Default: Story = {
      render: () => ({
        template: '<h1 class="heading-1">Heading 1</h1><h2 class="heading-2">Heading 2</h2>',
      }),
    };