--- order: 3 title: zh-CN: 倒计时 en-US: Countdown --- ## zh-CN 倒计时组件。 ## en-US Countdown component. ```tsx import { Col, Row, Statistic } from 'antd'; import type { countdownValueType } from 'antd/lib/statistic/utils'; import React from 'react'; const { Countdown } = Statistic; const deadline = Date.now() + 1000 * 60 * 60 * 24 * 2 + 1000 * 30; // Moment is also OK const App: React.FC = () => { const onFinish = () => { console.log('finished!'); }; const onChange = (val: countdownValueType) => { if (4.95 * 1000 < val && val < 5 * 1000) { console.log('changed!'); } }; return ( ); }; export default App; ```