/** * Copyright (c) 2015-present, Facebook, Inc. * All rights reserved. * * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. An additional grant * of patent rights can be found in the PATENTS file in the same directory. * * @providesModule BlogPostFooter */ 'use strict'; var React = require('React'); var BlogPostDate = require('BlogPostDate'); var BlogPostFooter = React.createClass({ render: function() { var post = this.props.post; var authorImage = this.props.post.authorImage ? this.props.post.authorImage : '/react-native/img/author.png'; var authorNameTitleSeparator = ''; var authorTitle; if (this.props.post.authorTitle) { authorNameTitleSeparator = ', '; authorTitle = {this.props.post.authorTitle}; } return (
); } }); module.exports = BlogPostFooter;