UNPKG

zent

Version:

一套前端设计语言和基于React的实现

8 lines (7 loc) 463 B
import { warningOnce } from '../../utils/warningOnce'; export function warningSubscribeValue(shouldWarn, tag) { warningOnce(!shouldWarn, "form-subscribe-value-" + tag, 'Subscribe `value` of %s might cause performance issues, do it with caution.', tag); } export function warningSubscribeValid(shouldWarn, tag) { warningOnce(!shouldWarn, "form-subscribe-valid-" + tag, 'Subscribe `valid` of %s might cause performance issues, do it with caution.', tag); }