Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
308 Bytes
import React from 'react'
import { Header, InfoBox, Layout, PostList } from '../components'
const ClientOnly = () => {
return (
<Layout>
<Header />
<InfoBox>ℹ️ This data is loaded on client and not prefetched</InfoBox>
<PostList />
</Layout>
)
}
export default ClientOnly