Beginning to remove extraneous components and logic

This commit is contained in:
efarooqui
2020-09-09 07:43:33 -07:00
parent c264071cdb
commit a1f7cf69d4
3 changed files with 17 additions and 16 deletions

View File

@@ -108,7 +108,7 @@ class Card extends React.Component {
}
renderNarrative () {
const links = this.props.getNarrativeLinks(this.props.event)
// const links = this.props.getNarrativeLinks(this.props.event)
if (links !== null) {
return (
@@ -148,9 +148,9 @@ class Card extends React.Component {
renderExtra () {
return (
<div className='card-bottomhalf'>
{this.renderFilters()}
{/* {this.renderFilters()} */}
{this.renderSources()}
{this.renderNarrative()}
{/* {this.renderNarrative()} */}
</div>
)
}