hacker_radio / src /app /feed /page.tsx
ldidukh's picture
Initial React upload
80be4da
raw
history blame contribute delete
190 Bytes
import { HNPostFeed } from '@/components/HNPostFeed'
export default function FeedPage() {
return (
<div className="max-w-6xl mx-auto px-6 py-4">
<HNPostFeed />
</div>
)
}