12 lines
283 B
JavaScript
12 lines
283 B
JavaScript
import { useBlockProps, RichText } from "@wordpress/block-editor";
|
|
|
|
export default function save({ attributes }) {
|
|
return (
|
|
<div {...useBlockProps.save()}>
|
|
<p className="interviewed-person-name">
|
|
<strong>{attributes.interviewedPersonName} :</strong>
|
|
</p>
|
|
</div>
|
|
);
|
|
}
|