New
Trending
New
Trending
Get inspired by
what others post
Use these or create your own content within Wepost.


















Latest
import type { ComponentType } from "react"
export function withCMSData(Component): ComponentType {
return (props) => {
// This assumes you've created a CMS collection
// You'll need to manually map your CMS items here
const cmsItems = [
// Map your CMS collection items here
// Framer will provide the data from your collection
]
return <Component {...props} items={cmsItems} />
}
}
import type { ComponentType } from "react"
export function withCMSData(Component): ComponentType {
return (props) => {
// This assumes you've created a CMS collection
// You'll need to manually map your CMS items here
const cmsItems = [
// Map your CMS collection items here
// Framer will provide the data from your collection
]
return <Component {...props} items={cmsItems} />
}
}














