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/services/graphql/contact.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/services/graphql/contact.ts') diff --git a/src/services/graphql/contact.ts b/src/services/graphql/contact.ts index 37c640d..3098374 100644 --- a/src/services/graphql/contact.ts +++ b/src/services/graphql/contact.ts @@ -1,4 +1,4 @@ -import { SendMailInput } from '../../types/graphql/mutations'; +import { SendMailInput } from '../../types'; import { fetchAPI } from './api'; import { sendMailMutation } from './contact.mutation'; -- cgit v1.2.3