- matrix-gateway: POST /internal/matrix/presence/online endpoint - usePresenceHeartbeat hook with activity tracking - Auto away after 5 min inactivity - Offline on page close/visibility change - Integrated in MatrixChatRoom component
8 lines
220 B
JavaScript
8 lines
220 B
JavaScript
'use strict';
|
|
|
|
if (process.env.NODE_ENV === 'production') {
|
|
module.exports = require('./cjs/react-dom-test-utils.production.min.js');
|
|
} else {
|
|
module.exports = require('./cjs/react-dom-test-utils.development.js');
|
|
}
|