Add missing _t import

This commit is contained in:
Luke Barnard 2017-05-31 16:02:42 +01:00
parent 7abaadddde
commit 8192374481

View file

@ -16,6 +16,7 @@ limitations under the License.
'use strict'; 'use strict';
import { _t } from '../../../languageHandler';
import React from 'react'; import React from 'react';
module.exports = React.createClass({ module.exports = React.createClass({
@ -27,5 +28,5 @@ module.exports = React.createClass({
<a href="https://matrix.org">{_t("powered by Matrix")}</a> <a href="https://matrix.org">{_t("powered by Matrix")}</a>
</div> </div>
); );
} },
}); });