first commit

This commit is contained in:
rayd1o
2026-03-05 11:46:58 +08:00
commit e7033775d8
20657 changed files with 1988940 additions and 0 deletions

15
frontend/node_modules/antd/es/statistic/Countdown.js generated vendored Normal file
View File

@@ -0,0 +1,15 @@
"use client";
import * as React from 'react';
import { devUseWarning } from '../_util/warning';
import StatisticTimer from './Timer';
const Countdown = props => {
if (process.env.NODE_ENV !== 'production') {
const warning = devUseWarning('Countdown');
warning.deprecated(false, '<Statistic.Countdown />', '<Statistic.Timer type="countdown" />');
}
return /*#__PURE__*/React.createElement(StatisticTimer, Object.assign({}, props, {
type: "countdown"
}));
};
export default /*#__PURE__*/React.memo(Countdown);