From b28f9264f7dd0272fc551b8e77fa2cd524ba0187 Mon Sep 17 00:00:00 2001 From: TeXmeijin Date: Tue, 6 Feb 2024 18:35:17 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B=20[docs]=20jsdoc?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Text/Text.tsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/components/Text/Text.tsx b/src/components/Text/Text.tsx index 75c3a3c..fdd9078 100644 --- a/src/components/Text/Text.tsx +++ b/src/components/Text/Text.tsx @@ -1,3 +1,9 @@ import { FC, PropsWithChildren } from 'react' +/** + * こちらのTextコンポーネントだけ使って、RichTextEditorがTree ShakingでBundleに含まれなければ成功 + * @param children + * @constructor + */ + export const Text: FC = ({ children }) => {children}