From 64570357f9608ad6638b1f8cc283ee9dd1cc3264 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Fri, 15 Apr 2022 14:49:41 +0200 Subject: chore: add a ContactForm component --- src/components/atoms/layout/notice.tsx | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/components/atoms/layout') diff --git a/src/components/atoms/layout/notice.tsx b/src/components/atoms/layout/notice.tsx index e919182..b6e09c5 100644 --- a/src/components/atoms/layout/notice.tsx +++ b/src/components/atoms/layout/notice.tsx @@ -14,6 +14,11 @@ export type NoticeProps = { message: string; }; +/** + * Notice component + * + * Render a colored message depending on notice kind. + */ const Notice: VFC = ({ kind, message }) => { const kindClass = `wrapper--${kind}`; -- cgit v1.2.3