simple.md 239 Bytes
Newer Older
afc163's avatar
afc163 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
---
order: 0
title: Simple
---

简单的页头。

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

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

ReactDOM.render(
  <CountDown target={targetTime} />
, mountNode);
````