feat: display posts of those a user follows on following page
This commit is contained in:
@@ -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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user