diff options
author | elijah <elijah@riseup.net> | 2017-04-19 19:51:50 -0700 |
---|---|---|
committer | Kali Kaneko (leap communications) <kali@leap.se> | 2017-04-20 18:08:32 +0200 |
commit | 3810cfb433308dd9ced9c2185ecbb5f206e07f4c (patch) | |
tree | 73aceadb032cdfa9ba5c81944c05bc8e42cdc385 /ui/app/components/panel_switcher.js | |
parent | 73836440b099f10174bc0b79ad4b8c85fcb9caf1 (diff) |
[feat] added app buttons (quit & about bitmask)
- Closes #8803
Diffstat (limited to 'ui/app/components/panel_switcher.js')
-rw-r--r-- | ui/app/components/panel_switcher.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ui/app/components/panel_switcher.js b/ui/app/components/panel_switcher.js index 9a06b49f..e476487c 100644 --- a/ui/app/components/panel_switcher.js +++ b/ui/app/components/panel_switcher.js @@ -8,6 +8,7 @@ import GreeterPanel from './greeter_panel' import MainPanel from './main_panel' import Wizard from './wizard' import Addressbook from './addressbook' +import ByeSplash from './bye_splash' import App from 'app' import 'lib/common' @@ -73,5 +74,6 @@ export default class PanelSwitcher extends React.Component { render_main(props) {return elem(MainPanel, props)} render_addressbook(props) {return elem(Addressbook, props)} render_error(props) {return elem(ErrorPanel, props)} + render_bye_splash(props) {return elem(ByeSplash, props)} } |