'use strict'; import React from 'react'; import Button from 'react-bootstrap/lib/Button'; import LinkContainer from 'react-router-bootstrap/lib/LinkContainer'; import WhitelabelActions from '../../../../../actions/whitelabel_actions'; import WhitelabelStore from '../../../../../stores/whitelabel_store'; import { getLangText } from '../../../../../utils/lang_utils'; import { setDocumentTitle } from '../../../../../utils/dom_utils'; let MarketLanding = React.createClass({ propTypes: { // Provided from WalletApp currentUser: React.PropTypes.object, whitelabel: React.PropTypes.object.isRequired }, componentDidUpdate() { const { name } = this.props.whitelabel; if (name) { setDocumentTitle(`${name} Marketplace`); } }, render() { const { logo, name } = this.props.whitelabel; return (
{getLangText(`${name} Marketplace is powered by`) + ' '}

{getLangText('Existing ascribe user?')}

{getLangText('Do you need an account?')}

); } }); export default MarketLanding;