mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
This is the first step - pulling the ReactDOMFrameScheduling module out into a separate package. Co-authored-by: Brandon Dail <aweary@users.noreply.github.com>
8 lines
210 B
JavaScript
8 lines
210 B
JavaScript
'use strict';
|
|
|
|
if (process.env.NODE_ENV === 'production') {
|
|
module.exports = require('./cjs/react-scheduler.production.min.js');
|
|
} else {
|
|
module.exports = require('./cjs/react-scheduler.development.js');
|
|
}
|