| 1 |
import { useBlockProps } from '@wordpress/block-editor'; |
| 2 |
export const edit = ( props ) => { |
| 3 |
const blockProps = useBlockProps(); |
| 4 |
return ( |
| 5 |
<> |
| 6 |
<div { ...blockProps }> |
| 7 |
<div className="instructor-avatar"> |
| 8 |
<img |
| 9 |
src="/wp-content/plugins/learnpress/assets/images/no-image.png" |
| 10 |
alt="Instructor avatar placeholder" |
| 11 |
height={ 300 } |
| 12 |
width={ 300 } |
| 13 |
style={ { aspectRatio: '1 / 1', objectFit: 'cover' } } |
| 14 |
></img> |
| 15 |
</div> |
| 16 |
</div> |
| 17 |
</> |
| 18 |
); |
| 19 |
}; |
| 20 |
|