mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 20:20:00 +08:00
8 lines
227 B
TypeScript
8 lines
227 B
TypeScript
|
import devWarning, { resetWarned } from 'rc-util/lib/warning';
|
||
|
|
||
|
export { resetWarned };
|
||
|
|
||
|
export default (valid: boolean, component: string, message: string): void => {
|
||
|
devWarning(valid, `[antd: ${component}] ${message}`);
|
||
|
};
|