import React, { Component } from "react" import PropTypes from "prop-types" import { Column, Text } from "ui" export class DetailPlaceholder extends Component { static propTypes = { name: PropTypes.string, } render() { const { name } = this.props const capitalizedName = name.charAt(0).toUpperCase() + name.substr(1) return ( {`Select a ${name} to view details here`}
{`Or 'Add New ${capitalizedName}'`}
) } }