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";