summaryrefslogtreecommitdiffstats
path: root/web/react/components/posts_view_container.jsx
diff options
context:
space:
mode:
authorCorey Hulen <corey@hulen.com>2015-11-02 14:01:53 -0800
committerCorey Hulen <corey@hulen.com>2015-11-02 14:01:53 -0800
commit1086297336b05af6861e05b2023df6044284aba6 (patch)
treed3d95d78e99e9368393dae4f0e4ade3b6750cadc /web/react/components/posts_view_container.jsx
parent6360ce37da25029a4f62b14df8e01a62f64820a8 (diff)
parent6b1e80d1d55783016d295f3f116891ce65ae6b06 (diff)
downloadchat-1086297336b05af6861e05b2023df6044284aba6.tar.gz
chat-1086297336b05af6861e05b2023df6044284aba6.tar.bz2
chat-1086297336b05af6861e05b2023df6044284aba6.zip
Merge pull request #1269 from mattermost/plt-848-3
PLT-848 Add tutorial intro screens and popover tips
Diffstat (limited to 'web/react/components/posts_view_container.jsx')
-rw-r--r--web/react/components/posts_view_container.jsx9
1 files changed, 6 insertions, 3 deletions
diff --git a/web/react/components/posts_view_container.jsx b/web/react/components/posts_view_container.jsx
index 9eda2a158..7671ca01d 100644
--- a/web/react/components/posts_view_container.jsx
+++ b/web/react/components/posts_view_container.jsx
@@ -2,15 +2,18 @@
// See License.txt for license information.
const PostsView = require('./posts_view.jsx');
+const LoadingScreen = require('./loading_screen.jsx');
+
const ChannelStore = require('../stores/channel_store.jsx');
const PostStore = require('../stores/post_store.jsx');
-const Constants = require('../utils/constants.jsx');
-const ActionTypes = Constants.ActionTypes;
+
const Utils = require('../utils/utils.jsx');
const Client = require('../utils/client.jsx');
const AppDispatcher = require('../dispatcher/app_dispatcher.jsx');
const AsyncClient = require('../utils/async_client.jsx');
-const LoadingScreen = require('./loading_screen.jsx');
+
+const Constants = require('../utils/constants.jsx');
+const ActionTypes = Constants.ActionTypes;
import {createChannelIntroMessage} from '../utils/channel_intro_mssages.jsx';