import React, { useState } from 'react'; import { Flex, Slider, Switch, Typography } from 'antd'; const App = () => { const [rows, setRows] = useState(2); const [expanded, setExpanded] = useState(false); return ( setExpanded((c) => !c)} style={{ flex: 'none' }} /> setExpanded(info.expanded), }} copyable > {'Ant Design, a design language for background applications, is refined by Ant UED Team.'.repeat( 20, )} ); }; export default App;