diff options
author | 2022-11-08 18:39:22 +0000 | |
---|---|---|
committer | 2022-11-08 18:39:22 +0000 | |
commit | dcdeca56acb6c03d4868ece51ef4611e7598e270 (patch) | |
tree | f8731cc4f82f335c00a4a9a7f4b573d277b84a3e /examples/portfolio | |
parent | 0dcdc6fb1e6160c8a225a65c4810f565e2b673b5 (diff) | |
download | astro-dcdeca56acb6c03d4868ece51ef4611e7598e270.tar.gz astro-dcdeca56acb6c03d4868ece51ef4611e7598e270.tar.zst astro-dcdeca56acb6c03d4868ece51ef4611e7598e270.zip |
[ci] format
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> |