From f861e6a269ba9f62700776d3cd13b644a9e836d4 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Wed, 20 Sep 2023 16:38:54 +0200 Subject: refactor: use named export for everything except pages Next expect a default export for pages so only those components should use default exports. Everything else should use named exports to reduce the number of import statements. --- src/components/molecules/layout/code.tsx | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) (limited to 'src/components/molecules/layout/code.tsx') diff --git a/src/components/molecules/layout/code.tsx b/src/components/molecules/layout/code.tsx index 4eb9be3..a1aadd8 100644 --- a/src/components/molecules/layout/code.tsx +++ b/src/components/molecules/layout/code.tsx @@ -1,8 +1,9 @@ import { FC, useRef } from 'react'; -import usePrism, { +import { type OptionalPrismPlugin, type PrismLanguage, -} from '../../../utils/hooks/use-prism'; + usePrism, +} from '../../../utils/hooks'; import styles from './code.module.scss'; export type CodeProps = { @@ -37,7 +38,7 @@ export type CodeProps = { * * Render a code block with syntax highlighting. */ -const Code: FC = ({ +export const Code: FC = ({ children, filterOutput = false, language, @@ -55,16 +56,14 @@ const Code: FC = ({ return (
         {children}
       
); }; - -export default Code; -- cgit v1.2.3