Files
ant-design/components/_util/getReactMajorVersionCanDelMe.ts
二货爱吃白萝卜 b296ccb192 chore: warning tips (#55745)
* chore: warning tips

* test: update snapshot

* chore: warning for verson
2025-11-18 15:05:06 +08:00

11 lines
341 B
TypeScript

// ZombieJ: This is only warn for React 17 not support.
// But Jest mock React 17 will cause many issues in testing,
// Can be safe to remove in next major version.
import { version } from 'react';
export default function getReactMajorVersion() {
const majorVersion = Number.parseInt(version.split('.')[0], 10);
return majorVersion;
}