'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 PollineLanding = React.createClass({ propTypes: { // Provided from WalletApp currentUser: React.PropTypes.object, whitelabel: React.PropTypes.object.isRequired }, componentWillMount() { setDocumentTitle('Polline Marketplace'); }, render() { return (
{getLangText('Polline Art Marketplace is powered by') + ' '}

{getLangText('Existing ascribe user?')}

); } }); export default PollineLanding;