Skip to content

Commit

Permalink
docs(SideMenu): SideMenuGroupを使用しないサンプルを追加
Browse files Browse the repository at this point in the history
  • Loading branch information
Qs-F committed Sep 24, 2024
1 parent 2c17a17 commit 9faabba
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,19 @@ export default {
}

export const Default: StoryFn = () => (
<div className="shr-bg-background shr-p-2 shr-max-w-[15rem]">
<SideMenu>
<SideMenuItem href="#">アカウント</SideMenuItem>
<SideMenuItem href="#" current>
認証設定
</SideMenuItem>
<SideMenuItem href="#">評価項目の表示設定</SideMenuItem>
<SideMenuItem href="#">評価対象者の入力必須項目設定</SideMenuItem>
</SideMenu>
</div>
)

export const Grouped: StoryFn = () => (
<div className="shr-bg-background shr-p-2 shr-max-w-[15rem]">
<SideMenu>
<SideMenuGroup title="個人設定">
Expand Down

0 comments on commit 9faabba

Please sign in to comment.