import MainTemplate from "@/templates/MainTemplate" import PostListing from "@/containers/PostListing" import { usePosts } from "@/hooks/usePosts" const HomePage = () => { const { posts } = usePosts() return ( ) } export { HomePage }