simple.md 344 Bytes
Newer Older
afc163's avatar
afc163 committed
1 2
---
order: 0
nikogu's avatar
nikogu committed
3 4 5
title:
  zh-CN: 基本
  en-US: Basic
afc163's avatar
afc163 committed
6 7
---

nikogu's avatar
nikogu committed
8 9
## zh-CN

nikogu's avatar
nikogu committed
10
简单的倒计时组件使用。
afc163's avatar
afc163 committed
11

nikogu's avatar
nikogu committed
12 13 14 15
## en-US

The simplest usage.

afc163's avatar
afc163 committed
16 17 18 19 20 21
````jsx
import CountDown from 'ant-design-pro/lib/CountDown';

const targetTime = new Date().getTime() + 3900000;

ReactDOM.render(
nikogu's avatar
nikogu committed
22
  <CountDown style={{ fontSize: 20 }} target={targetTime} />
afc163's avatar
afc163 committed
23 24
, mountNode);
````