d2-ui
Version:
14 lines (11 loc) • 457 B
JavaScript
var warning = require('fbjs/lib/warning');
warning(
false,
// Require examples in this string must be split to prevent React's
// build tools from mistaking them for real requires.
// Otherwise the build tools will attempt to build a 'react-addons-{addon}' module.
'require' + "('react/addons') is deprecated. " +
'Access using require' + "('react-addons-{addon}') instead."
);
module.exports = require('./lib/ReactWithAddons');
;