diff options
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 2746f005..0e3f0dcd 100644 --- a/ui/app/components/panel_switcher.js +++ b/ui/app/components/panel_switcher.js @@ -6,6 +6,7 @@ import Splash from './splash' import GreeterPanel from './greeter_panel' import MainPanel from './main_panel' import Wizard from './wizard' +import Addressbook from './addressbook' import App from 'app' import 'lib/common' @@ -55,5 +56,6 @@ export default class PanelSwitcher extends React.Component { render_wizard(props) {return elem(Wizard, props)} render_greeter(props) {return elem(GreeterPanel, props)} render_main(props) {return elem(MainPanel, props)} + render_addressbook(props) {return elem(Addressbook, props)} } |