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.

SidePanels.js 536B

12345678910111213141516171819
  1. import Chat from './chat/Chat';
  2. import SettingsMenu from './settings/SettingsMenu';
  3. import Profile from './profile/Profile';
  4. import ContactListView from './contactlist/ContactListView';
  5. const SidePanels = {
  6. init (eventEmitter) {
  7. //Initialize chat
  8. Chat.init(eventEmitter);
  9. //Initialize settings
  10. SettingsMenu.init(eventEmitter);
  11. //Initialize profile
  12. Profile.init(eventEmitter);
  13. //Initialize contact list view
  14. ContactListView.init();
  15. }
  16. };
  17. export default SidePanels;