From 08a1b7a29256624108f132652368a46838d45222 Mon Sep 17 00:00:00 2001 From: Jon Nicholson Date: Fri, 12 Jul 2024 19:46:50 +0100 Subject: [PATCH] Leaving entries out --- src/components/Publications/Publication.jsx | 4 ++-- src/components/Publications/PublicationGroup.jsx | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/components/Publications/Publication.jsx b/src/components/Publications/Publication.jsx index 12b5eac..bd26e2f 100644 --- a/src/components/Publications/Publication.jsx +++ b/src/components/Publications/Publication.jsx @@ -1,11 +1,11 @@ -import Entry from './Entry' +// import Entry from './Entry' import styled from './Publication.module.css' import PropTypes from 'prop-types' const Publication = ({ entry }) => { return (
  • - + {/* */}
    Detail
    diff --git a/src/components/Publications/PublicationGroup.jsx b/src/components/Publications/PublicationGroup.jsx index 5a9c230..344e75b 100644 --- a/src/components/Publications/PublicationGroup.jsx +++ b/src/components/Publications/PublicationGroup.jsx @@ -1,4 +1,4 @@ -// import Publication from './Publication' +import Publication from './Publication' import PropTypes from 'prop-types' const PublicationGroup = ({ title, content }) => { @@ -6,9 +6,9 @@ const PublicationGroup = ({ title, content }) => {

    {title}

      - {/* {content.map((entry) => ( + {content.map((entry) => ( - ))} */} + ))}
    )