CoastalCommitsPastes/client/components/my-posts/index.tsx

8 lines
183 B
TypeScript
Raw Normal View History

2022-03-06 19:46:59 -05:00
import PostList from "../post-list"
const MyPosts = ({ posts, error }: { posts: any, error: any }) => {
return <PostList posts={posts} error={error} />
2022-03-06 19:46:59 -05:00
}
export default MyPosts