misc(v2): misc fixes

This commit is contained in:
Yangshun Tay 2019-03-04 22:39:07 -08:00
parent 95b0cb942f
commit d64581f2b4
9 changed files with 27 additions and 34 deletions

View file

@ -34,8 +34,8 @@ function BlogPage(props) {
</li>
))}
</ul>
{BlogPosts.map(BlogPost => (
<BlogPost />
{BlogPosts.map((BlogPost, index) => (
<BlogPost key={index} />
))}
</div>
</Layout>