Gwk-Cultural-Park/components/NewsRoomBody.tsx

13 lines
349 B
TypeScript
Raw Normal View History

2024-09-07 01:40:25 +00:00
import { PortableText } from '@portabletext/react'
import newsroomposts from '../pages/pages/newsroom'
import styles from './PostBody.module.css'
export default function NewsRoomBody({ newsroomposts }) {
return (
<div className={`mx-0 pb-10 font-light ${styles.portableText} `}>
<PortableText value={newsroomposts} />
</div>
)
}