* Add linter rules for import order and type member delimiters * Remove unneeded group * Group all app/* imports before the internal imports * Move app/ imports before parent imports * Separate @node_modules imports into a different group * Substitute app paths by aliases * Fix @node_modules import order and add test related modules * Add aliases for types and test, and group import types
48 lines
1.4 KiB
JavaScript
48 lines
1.4 KiB
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import Alert from './alert';
|
|
import Autocomplete from './autocomplete';
|
|
import BottomSheet from './bottom_sheet';
|
|
import CameraQuickAction from './camera_quick_action';
|
|
import ChannelsList from './channels_list';
|
|
import DateTimePicker from './date_time_picker';
|
|
import EditChannelInfo from './edit_channel_info';
|
|
import FileQuickAction from './file_quick_action';
|
|
import ImageQuickAction from './image_quick_action';
|
|
import InputQuickAction from './input_quick_action';
|
|
import MainSidebar from './main_sidebar';
|
|
import Post from './post';
|
|
import PostDraft from './post_draft';
|
|
import PostList from './post_list';
|
|
import PostOptions from './post_options';
|
|
import ProfilePicture from './profile_picture';
|
|
import RecentItem from './recent_item';
|
|
import SearchBar from './search_bar';
|
|
import SendButton from './send_button';
|
|
import SettingsSidebar from './settings_sidebar';
|
|
import TeamsList from './teams_list';
|
|
|
|
export {
|
|
Alert,
|
|
Autocomplete,
|
|
BottomSheet,
|
|
CameraQuickAction,
|
|
DateTimePicker,
|
|
EditChannelInfo,
|
|
FileQuickAction,
|
|
ImageQuickAction,
|
|
InputQuickAction,
|
|
ChannelsList,
|
|
TeamsList,
|
|
MainSidebar,
|
|
Post,
|
|
PostDraft,
|
|
PostList,
|
|
PostOptions,
|
|
ProfilePicture,
|
|
RecentItem,
|
|
SearchBar,
|
|
SendButton,
|
|
SettingsSidebar,
|
|
};
|