Install react-router-dom to support client-side navigation. This is a prerequisite for implementing the multi-step authentication flow and other routed features. Additionally, this commit includes minor copy improvements to the password reset forms for better clarity.
8 lines
208 B
JavaScript
8 lines
208 B
JavaScript
'use strict';
|
|
|
|
if (process.env.NODE_ENV === 'production') {
|
|
module.exports = require('./cjs/scheduler.native.production.js');
|
|
} else {
|
|
module.exports = require('./cjs/scheduler.native.development.js');
|
|
}
|