-
Notifications
You must be signed in to change notification settings - Fork 141
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
Showing
4 changed files
with
394 additions
and
367 deletions.
There are no files selected for viewing
367 changes: 0 additions & 367 deletions
367
packages/smarthr-ui/src/components/AppHeader/AppHeader.stories.tsx
This file was deleted.
Oops, something went wrong.
17 changes: 17 additions & 0 deletions
17
packages/smarthr-ui/src/components/AppHeader/stories/AppHeader.stories.tsx
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,17 @@ | ||
import { Meta, StoryObj } from '@storybook/react/*' | ||
|
||
import { AppHeader } from '../AppHeader' | ||
|
||
import { args } from './args' | ||
|
||
const meta = { | ||
title: 'Navigation(ナビゲーション)/AppHeader', | ||
component: AppHeader, | ||
args, | ||
} satisfies Meta<typeof AppHeader> | ||
|
||
export default meta | ||
|
||
type Story = StoryObj<typeof meta> | ||
|
||
export const Default: Story = {} |
Oops, something went wrong.