mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 02:59:58 +08:00
502dac12aa
* docs: fix code * feat: lint * feat: prettier * feat: test * feat: review * feat: format html * feat: format html
24 lines
699 B
TypeScript
24 lines
699 B
TypeScript
import * as React from 'react';
|
|
import { Provider as MotionProvider } from 'rc-motion';
|
|
|
|
import { useToken } from '../theme/internal';
|
|
|
|
export interface MotionWrapperProps {
|
|
children?: React.ReactNode;
|
|
}
|
|
|
|
export default function MotionWrapper(props: MotionWrapperProps): React.ReactElement {
|
|
const { children } = props;
|
|
const [, token] = useToken();
|
|
const { motion } = token;
|
|
|
|
const needWrapMotionProviderRef = React.useRef(false);
|
|
needWrapMotionProviderRef.current = needWrapMotionProviderRef.current || motion === false;
|
|
|
|
if (needWrapMotionProviderRef.current) {
|
|
return <MotionProvider motion={motion}>{children}</MotionProvider>;
|
|
}
|
|
|
|
return children as React.ReactElement;
|
|
}
|