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

Configure Feed

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

Update imports

BK610 74c071f1 fbc444af

+2 -2
+2 -2
components/pageContent/blog/BlogPage.tsx
··· 2 2 import BaseLayout from "@/components/BaseLayout"; 3 3 import SectionList from "@/components/SectionList"; 4 4 import BlogPostPreview from "@/components/BlogPostPreview"; 5 - import type BlogPost from "@/types/BlogPost"; 5 + import type BlogPostType from "@/types/BlogPost"; 6 6 7 7 interface BlogProps { 8 - blogPosts: Array<BlogPost>; 8 + blogPosts: Array<BlogPostType>; 9 9 } 10 10 11 11 export default function Blog({ blogPosts }: BlogProps): React.ReactElement {