Untitled
unknown
plain_text
a year ago
278 B
23
Indexable
import { useBlogPostsHomeData } from '@/lib/ApolloHooks'; const Home = (): JSX.Element => { const { posts, loading: postsLoading, error: postsError } = useBlogPostsHomeData(); return ( <> <HomeMain posts={posts} /> </> ); } export default Home
Editor is loading...
Leave a Comment