'use strict'; import React from 'react'; import Button from 'react-bootstrap/lib/Button'; import LinkContainer from 'react-router-bootstrap/lib/LinkContainer'; import { getLangText } from '../../../../../utils/lang_utils'; import { setDocumentTitle } from '../../../../../utils/dom_utils'; let Vivi23Landing = React.createClass({ propTypes: { customThumbnailPlaceholder: React.PropTypes.func, // Provided from WalletApp currentUser: React.PropTypes.object, whitelabel: React.PropTypes.object.isRequired, // Provided from router location: React.PropTypes.object }, componentWillMount() { setDocumentTitle('23VIVI Marketplace'); }, render() { return (
{getLangText('23VIVI digital wallet is powered by') + ' '}

{getLangText('Existing ascribe user?')}

); } }); export default Vivi23Landing;