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/no-results.tsx | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'src/components/organisms/layout/no-results.tsx') diff --git a/src/components/organisms/layout/no-results.tsx b/src/components/organisms/layout/no-results.tsx index 1b563da..1e7afe1 100644 --- a/src/components/organisms/layout/no-results.tsx +++ b/src/components/organisms/layout/no-results.tsx @@ -1,8 +1,6 @@ import { FC } from 'react'; import { useIntl } from 'react-intl'; -import SearchForm, { - type SearchFormProps, -} from '../../organisms/forms/search-form'; +import { SearchForm, type SearchFormProps } from '../forms'; export type NoResultsProps = Pick; @@ -11,7 +9,7 @@ export type NoResultsProps = Pick; * * Renders a no results text with a search form. */ -const NoResults: FC = ({ searchPage }) => { +export const NoResults: FC = ({ searchPage }) => { const intl = useIntl(); return ( @@ -34,5 +32,3 @@ const NoResults: FC = ({ searchPage }) => { ); }; - -export default NoResults; -- cgit v1.2.3