From 7729e4b1f6df54a6fdac9edf9169417a63104aaf Mon Sep 17 00:00:00 2001 From: miteruzo Date: Mon, 15 Sep 2025 02:31:25 +0900 Subject: [PATCH] =?UTF-8?q?#102=20=E3=82=B5=E3=82=A4=E3=83=89=E3=83=90?= =?UTF-8?q?=E3=83=BC=E3=81=AE=E6=8A=95=E7=A8=BF=E8=A9=B3=E7=B4=B0=EF=BC=8C?= =?UTF-8?q?=E5=BD=A2=E3=81=A0=E3=81=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/components/TagDetailSidebar.tsx | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/TagDetailSidebar.tsx b/frontend/src/components/TagDetailSidebar.tsx index 91d7092..26e601e 100644 --- a/frontend/src/components/TagDetailSidebar.tsx +++ b/frontend/src/components/TagDetailSidebar.tsx @@ -2,6 +2,7 @@ import { useEffect, useState } from 'react' import TagLink from '@/components/TagLink' import TagSearch from '@/components/TagSearch' +import SectionTitle from '@/components/common/SectionTitle' import SubsectionTitle from '@/components/common/SubsectionTitle' import SidebarComponent from '@/components/layout/SidebarComponent' import { CATEGORIES } from '@/consts' @@ -53,11 +54,26 @@ export default (({ post }: Props) => {
{categoryNames[cat]}
))} + {post && ( +
+ 情報 + +
)} ) }) satisfies FC