simple.md 286 Bytes
Newer Older
afc163's avatar
afc163 committed
1 2
---
order: 0
nikogu's avatar
nikogu committed
3
title: 基础样例 
afc163's avatar
afc163 committed
4 5
---

nikogu's avatar
nikogu committed
6
简单的倒计时组件使用。
afc163's avatar
afc163 committed
7 8 9 10 11 12 13

````jsx
import CountDown from 'ant-design-pro/lib/CountDown';

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

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