The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/client/Channel/adapters.js

11 lines
502 B

import { HTML } from 'meteor/htmljs';
import { createTemplateForComponent } from '../reactAdapters';
createTemplateForComponent('DiscussionMessageList', () => import('./Discussions/ContextualBar/List'), {
renderContainerView: () => HTML.DIV({ class: 'contextual-bar' }), // eslint-disable-line new-cap
});
createTemplateForComponent('ThreadsList', () => import('./Threads/ContextualBar/List'), {
renderContainerView: () => HTML.DIV({ class: 'contextual-bar' }), // eslint-disable-line new-cap
});