From 8f0774496f887670770cf8fd0ee8b46d1d30b70f Mon Sep 17 00:00:00 2001 From: Luke Barnard Date: Fri, 8 Dec 2017 11:29:21 +0000 Subject: [PATCH] Remove redundant MatrixChat --- src/components/structures/MatrixChat.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/components/structures/MatrixChat.js b/src/components/structures/MatrixChat.js index 7c41a67fca..802da74bcf 100644 --- a/src/components/structures/MatrixChat.js +++ b/src/components/structures/MatrixChat.js @@ -84,7 +84,7 @@ const ONBOARDING_FLOW_STARTERS = [ 'view_create_group', ]; -const MatrixChat = React.createClass({ +export default React.createClass({ // we export this so that the integration tests can use it :-S statics: { VIEWS: VIEWS, @@ -1584,5 +1584,3 @@ const MatrixChat = React.createClass({ console.error(`Unknown view ${this.state.view}`); }, }); - -export default MatrixChat;