localgreenchain/components/paragraph--view.tsx
2023-08-09 21:34:23 +00:00

9 lines
292 B
TypeScript

import { ViewPropertiesListing } from "components/view--properties_listing"
export function ParagraphView({ paragraph, ...props }) {
if (paragraph.field_view.name === "properties--listing") {
return <ViewPropertiesListing view={paragraph.field_view} {...props} />
}
return null
}