mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-12 07:09:55 +08:00
12 lines
282 B
TypeScript
12 lines
282 B
TypeScript
|
import * as React from 'react';
|
||
|
import { detectFlexGapSupported } from '../../_util/styleChecker';
|
||
|
|
||
|
export default () => {
|
||
|
const [flexible, setFlexible] = React.useState(false);
|
||
|
React.useEffect(() => {
|
||
|
setFlexible(detectFlexGapSupported());
|
||
|
}, []);
|
||
|
|
||
|
return flexible;
|
||
|
};
|