PLACEHOLDER ALL THE THINGS
This commit is contained in:
@@ -5,6 +5,7 @@ export const Entity = (props) => {
|
||||
const hasCover = props.cover;
|
||||
const hasTags = props.tags && props.tags.length > 0;
|
||||
const hasButton = props.onButtonClick || props.buttonText
|
||||
|
||||
return (
|
||||
<div className='entity'>
|
||||
<div>
|
||||
|
||||
@@ -4,9 +4,9 @@ import "./EntityList.scss"
|
||||
|
||||
const EntityPlaceholder = (props) => {
|
||||
return (
|
||||
<li className='entity-item pulsating'>
|
||||
<li className={'entity-item ' + (props.cover ? '' : 'pulsating')}>
|
||||
<Link to={props.link}>
|
||||
{props.cover && <div className='cover'/>}
|
||||
{props.cover && <div className='cover pulsating'/>}
|
||||
<div className='body'>
|
||||
<span class='title'> </span>
|
||||
<span className='subtitle'> </span>
|
||||
|
||||
Reference in New Issue
Block a user