Use Prettier

This commit is contained in:
prototypa
2022-09-11 03:51:55 -04:00
parent 51362812c8
commit d909adb658
52 changed files with 1487 additions and 1447 deletions

View File

@@ -1,15 +1,15 @@
---
import Item from "~/components/blog/ListItem.astro";
import Item from '~/components/blog/ListItem.astro';
const { posts } = Astro.props;
---
<ul>
{
posts.map((post) => (
<li class="mb-10 md:mb-16">
<Item post={post} />
</li>
))
}
{
posts.map((post) => (
<li class="mb-10 md:mb-16">
<Item post={post} />
</li>
))
}
</ul>