systems-obscure/src/pages/posts.jsx
thomasabishop 04950b84bb
All checks were successful
Deploy Blog / deploy (push) Successful in 1m53s
style: improve titles
2025-11-25 18:43:08 +00:00

17 lines
344 B
JavaScript

// @ts-nocheck
import MainTemplate from "@/templates/MainTemplate"
import { usePosts } from "@/hooks/usePosts"
import PostListing from "@/containers/PostListing"
const PostsPage = () => {
const { posts } = usePosts()
return (
<MainTemplate>
<PostListing title="all posts" posts={posts} />
</MainTemplate>
)
}
export { PostsPage }