basic.md 875 Bytes
Newer Older
1 2 3 4 5 6 7 8
---
order: 0
title: Basic
---

εŸΊζœ¬ζθΏ°εˆ—θ‘¨γ€‚

````jsx
nikogu's avatar
nikogu committed
9
import DescriptionList from 'ant-design-pro/lib/DescriptionList';
10 11 12 13

const { Description } = DescriptionList;

ReactDOM.render(
ddcat1115's avatar
ddcat1115 committed
14
  <DescriptionList size="large" title="title">
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
    <Description term="Firefox">
      A free, open source, cross-platform,
      graphical web browser developed by the
      Mozilla Corporation and hundreds of
      volunteers.
    </Description>
    <Description term="Firefox">
      A free, open source, cross-platform,
      graphical web browser developed by the
      Mozilla Corporation and hundreds of
      volunteers.
    </Description>
    <Description term="Firefox">
      A free, open source, cross-platform,
      graphical web browser developed by the
      Mozilla Corporation and hundreds of
      volunteers.
    </Description>
  </DescriptionList>
, mountNode);
````