58 lines
1.6 KiB
JavaScript
58 lines
1.6 KiB
JavaScript
// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import About from './about';
|
|
import AccountNotifications from './account_notifications';
|
|
import AccountSettings from './account_settings';
|
|
import Channel from './channel';
|
|
import ChannelDrawer from './channel_drawer';
|
|
import ChannelInfo from './channel_info';
|
|
import ChannelMembers from './channel_members';
|
|
import ChannelAddMembers from './channel_add_members';
|
|
import CreateChannel from './create_channel';
|
|
import EditPost from './edit_post';
|
|
import ImagePreview from './image_preview';
|
|
import LoadTeam from './load_team';
|
|
import Login from './login';
|
|
import LoginOptions from './login_options';
|
|
import Mfa from './mfa';
|
|
import MoreChannels from './more_channels';
|
|
import MoreDirectMessages from './more_dms';
|
|
import OptionsModal from './options_modal';
|
|
import Settings from './settings';
|
|
import Root from './root';
|
|
import Search from './search';
|
|
import SelectServer from './select_server';
|
|
import SelectTeam from './select_team';
|
|
import Thread from './thread';
|
|
import UserProfile from './user_profile';
|
|
import Saml from './saml';
|
|
|
|
module.exports = {
|
|
About,
|
|
AccountNotifications,
|
|
AccountSettings,
|
|
ChannelView: Channel, // Special case the name for this one to avoid ambiguity
|
|
ChannelDrawer,
|
|
ChannelInfo,
|
|
ChannelMembers,
|
|
ChannelAddMembers,
|
|
CreateChannel,
|
|
EditPost,
|
|
ImagePreview,
|
|
LoadTeam,
|
|
Login,
|
|
LoginOptions,
|
|
Mfa,
|
|
MoreChannels,
|
|
MoreDirectMessages,
|
|
OptionsModal,
|
|
Settings,
|
|
Root,
|
|
Search,
|
|
SelectServer,
|
|
SelectTeam,
|
|
Thread,
|
|
UserProfile,
|
|
Saml
|
|
};
|