2
<Description label="cni.projectcalico.org/podIP">10.233.74.19/32</Description>
Styles and label can be set through the variant and label attribute for Descriptions.
2
<div style={{ backgroundColor: '#eff4f9', padding: '50px' }}>
3
<Card style={{ width: '300px' }}>
4
<Description label="project" variant="unstyled">
7
<Description label="cluster" variant="unstyled">
By passing an array to the data attribute, the description list can be displayed in batches.
3
{ label: 'Cluster', value: 'default' },
4
{ label: 'Project', value: 'ifcloud' },
5
{ label: 'Instance Name', value: 'dev-node1' },
6
{ label: 'Instance IP', value: '10.233.74.19' },
9
<div style={{ backgroundColor: '#eff4f9', padding: '50px' }}>
10
<Card style={{ width: '300px' }}>
11
<Descriptions data={data} variant="unstyled" />
13
<Card style={{ marginTop: '50px' }}>
14
<Descriptions data={data} variant="default" />