mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 00:09:39 +08:00
2cdf586291
* chore: fix lint * chore: fix lint * test: fix 16 * fix: lint
33 lines
727 B
TypeScript
33 lines
727 B
TypeScript
import React from 'react';
|
|
import type { CollapseProps } from 'antd';
|
|
import { Collapse } from 'antd';
|
|
|
|
const text = (
|
|
<p style={{ paddingLeft: 24 }}>
|
|
A dog is a type of domesticated animal. Known for its loyalty and faithfulness, it can be found
|
|
as a welcome guest in many households across the world.
|
|
</p>
|
|
);
|
|
|
|
const items: CollapseProps['items'] = [
|
|
{
|
|
key: '1',
|
|
label: 'This is panel header 1',
|
|
children: text,
|
|
},
|
|
{
|
|
key: '2',
|
|
label: 'This is panel header 2',
|
|
children: text,
|
|
},
|
|
{
|
|
key: '3',
|
|
label: 'This is panel header 3',
|
|
children: text,
|
|
},
|
|
];
|
|
|
|
const App: React.FC = () => <Collapse items={items} bordered={false} defaultActiveKey={['1']} />;
|
|
|
|
export default App;
|