aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Notice/Notice.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-01-04 13:07:15 +0100
committerArmand Philippot <git@armandphilippot.com>2022-01-04 13:32:04 +0100
commitab5e5f4bdf40b5bc1ccf82dc1b4aca94d5171ec3 (patch)
treed5b26588c08cbc3aac1f281aa848e68c522eabcd /src/components/Notice/Notice.tsx
parent1856796cef0989b10030906c9b1383d44800fb00 (diff)
refactor(sharing): avoid nested template literals
This improves readability. I also rename a variable to avoid duplicate between global scope and useEffect scope.
Diffstat (limited to 'src/components/Notice/Notice.tsx')
-rw-r--r--src/components/Notice/Notice.tsx4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/components/Notice/Notice.tsx b/src/components/Notice/Notice.tsx
index c941bf9..472efa5 100644
--- a/src/components/Notice/Notice.tsx
+++ b/src/components/Notice/Notice.tsx
@@ -10,8 +10,10 @@ const Notice = ({
children: ReactNode;
type: NoticeType;
}) => {
+ const withModifier = `message--${type}`;
+
return (
- <div className={`${styles.message} ${styles[`message--${type}`]}`}>
+ <div className={`${styles.message} ${styles[withModifier]}`}>
{children}
</div>
);