diff options
Diffstat (limited to 'examples/portfolio')
-rw-r--r-- | examples/portfolio/src/components/PortfolioPreview.astro | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/examples/portfolio/src/components/PortfolioPreview.astro b/examples/portfolio/src/components/PortfolioPreview.astro index 4a4b55e7d..4dafd0e6a 100644 --- a/examples/portfolio/src/components/PortfolioPreview.astro +++ b/examples/portfolio/src/components/PortfolioPreview.astro @@ -17,11 +17,13 @@ const { frontmatter, url } = Astro.props.project; <p class="desc">{frontmatter.description}</p> <div class="tags"> Tagged: - {frontmatter.tags.map((t) => ( - <div class="tag" data-tag={t}> - {t} - </div> - ))} + { + frontmatter.tags.map((t) => ( + <div class="tag" data-tag={t}> + {t} + </div> + )) + } </div> <a class="link" href={url}> <span class="linkInner">View</span> |