systems-obscure/src/pages/posts.jsx

18 lines
344 B
React
Raw Normal View History

2025-07-07 17:08:27 +01:00
// @ts-nocheck
import MainTemplate from "@/templates/MainTemplate"
import { usePosts } from "@/hooks/usePosts"
2025-11-04 19:06:51 +00:00
import PostListing from "@/containers/PostListing"
2025-07-07 17:08:27 +01:00
2025-11-04 19:06:51 +00:00
const PostsPage = () => {
const { posts } = usePosts()
2025-07-07 17:08:27 +01:00
2025-11-04 19:06:51 +00:00
return (
<MainTemplate>
2025-11-25 18:43:08 +00:00
<PostListing title="all posts" posts={posts} />
2025-11-04 19:06:51 +00:00
</MainTemplate>
)
2025-07-07 17:08:27 +01:00
}
export { PostsPage }