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/forms/motion-toggle.tsx | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to 'src/components/molecules/forms/motion-toggle.tsx') diff --git a/src/components/molecules/forms/motion-toggle.tsx b/src/components/molecules/forms/motion-toggle.tsx index 7e150ca..c1a55f0 100644 --- a/src/components/molecules/forms/motion-toggle.tsx +++ b/src/components/molecules/forms/motion-toggle.tsx @@ -1,8 +1,8 @@ import { FC } from 'react'; import { useIntl } from 'react-intl'; -import useAttributes from '../../../utils/hooks/use-attributes'; -import useLocalStorage from '../../../utils/hooks/use-local-storage'; -import RadioGroup, { +import { useAttributes, useLocalStorage } from '../../../utils/hooks'; +import { + RadioGroup, type RadioGroupCallback, type RadioGroupCallbackProps, type RadioGroupOption, @@ -30,7 +30,7 @@ export type MotionToggleProps = Pick< * * Render a Toggle component to set reduce motion. */ -const MotionToggle: FC = ({ +export const MotionToggle: FC = ({ defaultValue, storageKey, ...props @@ -107,14 +107,12 @@ const MotionToggle: FC = ({ return ( ); }; - -export default MotionToggle; -- cgit v1.2.3