From 34b84963f64d2995e45da593401b6784cc007966 Mon Sep 17 00:00:00 2001 From: Daniel Cortes Date: Mon, 15 Jun 2020 20:46:56 -0400 Subject: [PATCH] Entity->EntityItem --- src/components/EntityList.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/EntityList.jsx b/src/components/EntityList.jsx index 9fa9172..f6d15dc 100644 --- a/src/components/EntityList.jsx +++ b/src/components/EntityList.jsx @@ -2,7 +2,7 @@ import React from "react"; import {Link} from "react-router-dom"; import "./EntityList.scss" -const Entity = (props) => { +const EntityItem = (props) => { return (
  • @@ -21,7 +21,7 @@ const Entity = (props) => { } export const EntityList = (props) => { - const entities = props.items.map(item => ); const className = props.grid ? "grid" : "column";