Skip to content

Commit

Permalink
Leaving entries out
Browse files Browse the repository at this point in the history
  • Loading branch information
drjonnicholson committed Jul 12, 2024
1 parent baf58db commit 08a1b7a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/components/Publications/Publication.jsx
Original file line number Diff line number Diff line change
@@ -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 (
<li className={styled.publication}>
<Entry entry={entry} />
{/* <Entry entry={entry} /> */}
<details>
<summary>Detail</summary>
<div>
Expand Down
6 changes: 3 additions & 3 deletions src/components/Publications/PublicationGroup.jsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
// import Publication from './Publication'
import Publication from './Publication'
import PropTypes from 'prop-types'

const PublicationGroup = ({ title, content }) => {
return (
<div>
<h3>{title}</h3>
<ul>
{/* {content.map((entry) => (
{content.map((entry) => (
<Publication key={entry.id} entry={entry} />
))} */}
))}
</ul>
</div>
)
Expand Down

0 comments on commit 08a1b7a

Please sign in to comment.