-
Notifications
You must be signed in to change notification settings - Fork 441
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1a6f04a
commit 00d402e
Showing
2 changed files
with
26 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import type { Meta, StoryFn } from "@storybook/react" | ||
import { Layout } from "." | ||
|
||
const meta: Meta = { | ||
title: 'Design system/Layout', | ||
parameters: { | ||
layout: 'fullscreen' | ||
} | ||
} | ||
|
||
export default meta | ||
|
||
export const Static: StoryFn = () => ( | ||
<Layout.Root> | ||
<Layout.Header> | ||
<Layout.Banner /> | ||
<Layout.Headline title='Layout title' /> | ||
</Layout.Header> | ||
<Layout.Main> | ||
Page contents | ||
</Layout.Main> | ||
<Layout.Footer /> | ||
</Layout.Root> | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters