aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/root.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/root.js')
-rw-r--r--ui/app/root.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/app/root.js b/ui/app/root.js
index 21d6d1829..58605a3d2 100644
--- a/ui/app/root.js
+++ b/ui/app/root.js
@@ -3,6 +3,7 @@ const Component = require('react').Component
const Provider = require('react-redux').Provider
const h = require('react-hyperscript')
const SelectedApp = require('./select-app')
+const I18nProvider = require('./i18n-provider')
module.exports = Root
@@ -15,7 +16,7 @@ Root.prototype.render = function () {
h(Provider, {
store: this.props.store,
}, [
- h(SelectedApp),
+ h(I18nProvider, [ h(SelectedApp) ]),
])
)