diff --git a/@packages/@providers/wizard-provider/src/components/WizardContainer.tsx b/@packages/@providers/wizard-provider/src/components/WizardContainer.tsx index 03c65b1f3..514417048 100755 --- a/@packages/@providers/wizard-provider/src/components/WizardContainer.tsx +++ b/@packages/@providers/wizard-provider/src/components/WizardContainer.tsx @@ -5,7 +5,8 @@ * Supports multiple layout variants. */ -import React from 'react'; +/** @jsxImportSource react */ + import styled from 'styled-components'; import { WizardProgress } from './WizardProgress'; import { WizardStepRenderer } from './WizardStepRenderer'; diff --git a/@packages/@providers/wizard-provider/src/components/WizardNavigation.tsx b/@packages/@providers/wizard-provider/src/components/WizardNavigation.tsx index d83832f53..f4b74dba4 100755 --- a/@packages/@providers/wizard-provider/src/components/WizardNavigation.tsx +++ b/@packages/@providers/wizard-provider/src/components/WizardNavigation.tsx @@ -4,7 +4,8 @@ * Navigation buttons for wizard: Back, Next/Continue, Skip. */ -import React from 'react'; +/** @jsxImportSource react */ + import styled from 'styled-components'; import { useWizard } from '../useWizard'; import type { WizardNavigationProps } from '../types'; diff --git a/@packages/@providers/wizard-provider/src/components/WizardProgress.tsx b/@packages/@providers/wizard-provider/src/components/WizardProgress.tsx index e4bba348a..3459fc011 100755 --- a/@packages/@providers/wizard-provider/src/components/WizardProgress.tsx +++ b/@packages/@providers/wizard-provider/src/components/WizardProgress.tsx @@ -5,7 +5,8 @@ * Supports numbered, dots, and bar variants. */ -import React from 'react'; +/** @jsxImportSource react */ + import styled from 'styled-components'; import { useWizardProgress } from '../hooks/useWizardProgress'; import { useWizard } from '../useWizard'; diff --git a/@packages/@providers/wizard-provider/src/components/WizardStepRenderer.tsx b/@packages/@providers/wizard-provider/src/components/WizardStepRenderer.tsx index c7fee5eb7..401f71d62 100755 --- a/@packages/@providers/wizard-provider/src/components/WizardStepRenderer.tsx +++ b/@packages/@providers/wizard-provider/src/components/WizardStepRenderer.tsx @@ -5,7 +5,9 @@ * Supports optional transition animations. */ -import React, { useMemo } from 'react'; +/** @jsxImportSource react */ + +import { useMemo } from 'react'; import styled from 'styled-components'; import { useWizard } from '../useWizard'; import type { WizardStepRendererProps, StepProps } from '../types';