feat: display posts of those a user follows on following page

This commit is contained in:
Stevan Freeborn
2023-09-15 21:56:41 -05:00
parent 29d280ea3f
commit 7e3a6170e3
6 changed files with 151 additions and 2 deletions
+12
View File
@@ -0,0 +1,12 @@
import FollowingPosts from '@/components/FollowingPosts';
export default function FollowingPage() {
return (
<main className='flex flex-col items-center flex-1'>
<div className='flex flex-col w-full max-w-4xl gap-4'>
<h1 className='text-4xl font-bold'>Following</h1>
<FollowingPosts />
</div>
</main>
);
}