Skip to content

Commit

Permalink
HeaderのCourseMateIconをクリックすると、/homeに飛ぶようにした (#478)
Browse files Browse the repository at this point in the history
<!--変更したい場合は、`/.github/pull_request_template.md` を修正して下さい。-->
# PRの概要
close #453 

<!-- 変更の目的 もしくは 関連する Issue 番号 -->
<!-- 以下のように書くと Issue にリンクでき、マージ時に自動で Issue を閉じられる-->
<!-- closes #1 -->

## 具体的な変更内容
<!-- ビューの変更がある場合はスクショによる比較などがあるとわかりやすい -->

## 影響範囲
<!-- この関数を変更したのでこの機能にも影響がある、など -->

## 動作要件
<!-- 動作に必要な 環境変数 / 依存関係 / DBの更新 など -->

## 補足
<!-- レビューをする際に見てほしい点、ローカル環境で試す際の注意点、など -->

## レビューリクエストを出す前にチェック!

- [ ] 改めてセルフレビューしたか
- [ ] 手動での動作検証を行ったか
- [ ] server の機能追加ならば、テストを書いたか
  - 理由: 書いた | server の機能追加ではない
- [ ] 間違った使い方が存在するならば、それのドキュメントをコメントで書いたか
  - 理由: 書いた | 間違った使い方は存在しない
- [ ] わかりやすいPRになっているか

<!-- レビューリクエスト後は、Slackでもメンションしてお願いすることを推奨します。 -->
  • Loading branch information
KaichiManabe authored Oct 11, 2024
1 parent 3801573 commit fe4bf7f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion web/src/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,13 @@ export default function Header(props: Props) {
>
<Toolbar>
<Box sx={{ marginRight: "8px" }}>
<CourseMateIcon width="28px" height="28px" />
<IconButton
onClick={() => {
navigate("/home");
}}
>
<CourseMateIcon width="28px" height="28px" />
</IconButton>
</Box>
<Typography
variant="h6"
Expand Down

0 comments on commit fe4bf7f

Please sign in to comment.