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/organisms/layout/comments-list.tsx | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'src/components/organisms/layout/comments-list.tsx') diff --git a/src/components/organisms/layout/comments-list.tsx b/src/components/organisms/layout/comments-list.tsx index 227f715..1ce0cf5 100644 --- a/src/components/organisms/layout/comments-list.tsx +++ b/src/components/organisms/layout/comments-list.tsx @@ -1,6 +1,6 @@ import { FC } from 'react'; -import { SingleComment } from '../../../types/app'; -import Comment, { type CommentProps } from '../../organisms/layout/comment'; +import { type SingleComment } from '../../../types'; +import { Comment, type CommentProps } from './comment'; import styles from './comments-list.module.scss'; export type CommentsListProps = Pick & { @@ -19,7 +19,7 @@ export type CommentsListProps = Pick & { * * Render a comments list. */ -const CommentsList: FC = ({ +export const CommentsList: FC = ({ comments, depth, Notice, @@ -54,5 +54,3 @@ const CommentsList: FC = ({ return
    {getItems(comments, 0)}
; }; - -export default CommentsList; -- cgit v1.2.3