TheBird

Feed.jsx

263 B · jsx · 12 lines

1import { PostGrid } from "../components/PostGrid.jsx";23export function Feed({ posts, now }) {4  return (5    <div className="wrap">6      <div className="page-head">7        <h1>Feed</h1>8      </div>9      <PostGrid posts={posts} now={now} />10    </div>11  );12}