this repo has no description www.baileykane.co/
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Use BlogPostPreview component

BK610 23b02a8d 8c42d165

+2 -1
+2 -1
components/pageContent/BlogPage.tsx
··· 1 1 import { Key } from "react"; 2 2 import BaseLayout from "@/components/BaseLayout"; 3 + import BlogPostPreview from "@/components/BlogPostPreview"; 3 4 import type BlogPost from "@/types/BlogPost"; 4 5 5 6 interface BlogProps { ··· 18 19 </div> 19 20 <div> 20 21 {blogPosts.map((blogPost, k: Key) => ( 21 - <div key={k}>{blogPost.title}</div> 22 + <BlogPostPreview key={k} blogPost={blogPost} /> 22 23 ))} 23 24 </div> 24 25 </div>