File size: 197 Bytes
1e92f2d |
1 2 3 4 5 6 7 |
import { html } from '../indices-to-html';
import { p } from './functions';
const PostBlock = ( { block } ) => <div className="wpnc__post">{ p( html( block ) ) }</div>;
export default PostBlock;
|