basic.md 862 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 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35

const { Description } = DescriptionList;

ReactDOM.render(
  <DescriptionList title="title">
    <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);
````