1234567891011121314151617181920212223242526272829 |
- import React from "react";
- import { Handles, Thread, Post } from "../../types";
- import PostBox from "./PostBox";
- const Posts = (props: {
- startTime: number;
- handles: Handles;
- thread?: Thread;
- posts: Post[];
- }) => {
- const { handles, startTime, posts } = props;
- return (
- <div className="overflow-auto" style={{ height: `90%` }}>
- {posts
- .sort((a, b) => b.createdAt.block - a.createdAt.block)
- .map((post) => (
- <PostBox
- key={post.id}
- handles={handles}
- startTime={startTime}
- {...post}
- />
- ))}
- </div>
- );
- };
- export default Posts;
|