import React from 'react' import Login from './login' import Center from './center' import Splash from './splash' import Area from './area' import { Glyphicon } from 'react-bootstrap' import App from 'app' export default class GreeterPanel extends React.Component { constructor(props) { super(props) } newAccount() { App.show('wizard') } onLogin(account) { App.start() } render () { return
  Create a new account...
} }