lijianan
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
3 deletions
-
components/tour/index.tsx
|
|
@ -8,9 +8,9 @@ import useStyle from './style'; |
|
|
|
import type { TourProps, TourStepProps } from './interface'; |
|
|
|
import PurePanel from './PurePanel'; |
|
|
|
|
|
|
|
const Tour: React.ForwardRefRenderFunction<HTMLDivElement, TourProps> & { |
|
|
|
_InternalPanelDoNotUseOrYouWillBeFired: typeof PurePanel; |
|
|
|
} = (props) => { |
|
|
|
const Tour: React.FC<TourProps> & { _InternalPanelDoNotUseOrYouWillBeFired: typeof PurePanel } = ( |
|
|
|
props, |
|
|
|
) => { |
|
|
|
const { |
|
|
|
prefixCls: customizePrefixCls, |
|
|
|
steps, |
|
|
|