/** * External dependencies */ import React from '@wordpress/element'; export const PageContent = ( { title, body } ) => { return (

{ title }

{ body }

); };