Skip to content

Commit

Permalink
test: update stories
Browse files Browse the repository at this point in the history
  • Loading branch information
dominik-stumpf committed Jul 11, 2024
1 parent b3ed15a commit 56f1925
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions src/v2/components/Layout/Layout.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,21 @@ import type { Meta, StoryFn } from "@storybook/react"
import { Layout } from "."

const meta: Meta = {
title: 'Design system/Layout',
title: "Design system/Layout",
parameters: {
layout: 'fullscreen'
}
layout: "fullscreen",
},
}

export default meta

export const Static: StoryFn = () => (
<Layout.Root>
<Layout.Header>
<Layout.Hero>
<Layout.Banner />
<Layout.Headline title='Layout title' />
</Layout.Header>
<Layout.Main>
Page contents
</Layout.Main>
<Layout.Headline title="Layout title" />
</Layout.Hero>
<Layout.Main>Page contents</Layout.Main>
<Layout.Footer />
</Layout.Root>
)

0 comments on commit 56f1925

Please sign in to comment.