mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-28 21:19:37 +08:00
24 lines
445 B
TypeScript
24 lines
445 B
TypeScript
import React from 'react';
|
|
import { Grid, Tag } from 'antd';
|
|
|
|
const { useBreakpoint } = Grid;
|
|
|
|
const App: React.FC = () => {
|
|
const screens = useBreakpoint();
|
|
|
|
return (
|
|
<>
|
|
Current break point:{' '}
|
|
{Object.entries(screens)
|
|
.filter((screen) => !!screen[1])
|
|
.map((screen) => (
|
|
<Tag color="blue" key={screen[0]}>
|
|
{screen[0]}
|
|
</Tag>
|
|
))}
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default App;
|