1
0
mirror of https://github.com/element-hq/element-web.git synced 2025-12-01 09:58:03 +03:00

point imports at the new locations

This commit is contained in:
Matthew Hodgson
2018-04-13 00:43:44 +01:00
parent cc904be379
commit 40a67ca8fe
32 changed files with 150 additions and 123 deletions

View File

@@ -20,12 +20,12 @@ import React from 'react';
import PropTypes from 'prop-types';
import classNames from 'classnames';
import { MatrixClient } from 'matrix-js-sdk';
import { KeyCode } from 'matrix-react-sdk/lib/Keyboard';
import sdk from 'matrix-react-sdk';
import dis from 'matrix-react-sdk/lib/dispatcher';
import { KeyCode } from '../../Keyboard';
import sdk from '../../index';
import dis from '../../dispatcher';
import VectorConferenceHandler from '../../VectorConferenceHandler';
import SettingsStore from 'matrix-react-sdk/lib/settings/SettingsStore';
import SettingsStore from '../../settings/SettingsStore';
var LeftPanel = React.createClass({