mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 00:49:39 +08:00
ac5a06027e
This reverts commit ea8ed28209
.
12 lines
273 B
TypeScript
12 lines
273 B
TypeScript
import * as React from 'react';
|
|
import { detectFlexGapSupported } from '../styleChecker';
|
|
|
|
export default () => {
|
|
const [flexible, setFlexible] = React.useState(false);
|
|
React.useEffect(() => {
|
|
setFlexible(detectFlexGapSupported());
|
|
}, []);
|
|
|
|
return flexible;
|
|
};
|