You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

5 rivejä
301 B

  1. export default function deprecated(props, instead, component) {
  2. if (typeof window !== 'undefined' && window.console && window.console.error) {
  3. window.console.error("Warning: ".concat(props, " is deprecated at [ ").concat(component, " ], ") + "use [ ".concat(instead, " ] instead of it."));
  4. }
  5. }