@material-ui/core
Version:
React components that implement Google's Material Design.
9 lines (8 loc) • 388 B
JavaScript
var warnedOnce = false;
export default function unwrap(component) {
if (!warnedOnce) {
warnedOnce = true;
console.warn(['Material-UI: the test utils are deprecated, they are no longer present in v5.', 'The helpers were designed to work with enzyme.', 'However, the tests of the core components were moved to react-testing-library.'].join('\n'));
}
return component.Naked;
}